shithub: mc

ref: 82eecd5a321aa3c619437a21997aa73c33c31d3c
dir: /test/declmismatch.myr/

View raw version
use std
/*
should fail to compile with a type error.
char is incompatible with int.
*/
const main = {
	var a : int
	var b : char

	a = b
}