shithub: mc

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