shithub: mc

ref: dcd6fad70720c2c8baa5e0096f2b14e45e9aa447
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
}