shithub: mc

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