shithub: mc

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