shithub: mc

ref: 38fb09f0003bad6ce33fd0af769c68d0dd88bc36
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
}