shithub: mc

ref: 0060152b535f0376265f0fe46bba45964fe1a8b0
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
}