shithub: mc

ref: 2c4eeb399845785a1dc317e4f2e3cb3c3c7c5370
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
}