shithub: mc

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