shithub: mc

ref: 397e7774d4a6a7353d1c2c2bc5c68f90ebacab75
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
}