shithub: mc

ref: 913e7e12f5b204bc53b3761e9cd89a5cd5722c6a
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
}