shithub: mc

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