shithub: mc

ref: 996f8ee34ea615532312cb67df423ad48e2e4278
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
}