shithub: mc

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