shithub: mc

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