shithub: mc

ref: 95b07cdf3e64cd181229e1be1079c265a363675c
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
}