shithub: mc

ref: 2c0fbf27314d04cb3bb5ab1ea3f9b7bae556f89a
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
}