shithub: mc

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