shithub: mc

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