shithub: mc

ref: 18341c3b341f7f7c151673d2f79299f4074d378b
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
}