shithub: mc

ref: 3c9502102b2b01d6b32dad5f4f23f6f1fe736721
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
}