shithub: mc

ref: 63102e84123635698b1e23aa725f52bfdb39d2f0
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
}