shithub: mc

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