shithub: mc

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