shithub: mc

ref: 95034f67da8b6e6dca03868002ea2c56bad49b7c
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
}