shithub: mc

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