shithub: mc

ref: d4fac4da419b09f014c27b0f4334f1c8f4314faf
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
}