shithub: mc

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