shithub: mc

ref: fc260ededc77024140693c31d8a3230d3fc5b75a
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
}