shithub: mc

ref: 5773244f02b16a6be8235b123d518186f44a09d2
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
}