shithub: mc

ref: 1ee4f4207111b7fcfb0a75db1ebd7298af671007
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
}