shithub: mc

ref: 86f9ba03d2175620b8de6295c9bd074010e792bf
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
}