shithub: mc

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