shithub: mc

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