shithub: mc

ref: 03f0c0961f2350d59e9e3707ef3dac0ec196f61c
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
}