shithub: mc

ref: 36f4100dcea54700c0441a4667f601bcb5b1c59e
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
}