shithub: mc

ref: 6c6a15bf92f7a18265b080348491b831f523fd4e
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
}