shithub: mc

ref: 80ad746d8032274e2e6b40d3e4d801aa2085082d
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
}