shithub: mc

ref: 889d5c6fde975ec10bb39d08de9e7d47ec68387a
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
}