shithub: mc

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