shithub: mc

ref: 81c19d1a4fb393758ce2f08c63f8511ada5bc413
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
}