shithub: mc

ref: 1b49f96477ee3dc7c36dc9dd6fda0c081b6aafbd
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
}