shithub: mc

ref: 764fd41f08380207107ec05f65d0d0bf5b76797c
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
}