shithub: mc

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