shithub: mc

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