shithub: mc

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