shithub: mc

ref: b120745ab31e2b6a061b97c20e40ff643e2c867b
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
}