shithub: mc

ref: dfc57771d78d1bc4e4e9ad9494f05554f96f9841
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
}