shithub: mc

ref: 6863b80514aa42c6983d412823970a8c80e0b0cc
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
}