shithub: mc

ref: 180c0d000870433ae0108bb0bac1e9cdac5ce92c
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
}