shithub: mc

ref: 58c27b2d8d021d485feb47aeb9744c7ae27d9112
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
}