shithub: mc

ref: 31a4bbb9a9cb690907c24c43343cf0d6fcd0bd01
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
}