shithub: mc

ref: 3ecd3ce8929a1eb9a3632b7e4d85769d72babc9a
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
}