shithub: mc

ref: 10b54e590ef8bfd54c5dc9712d0864db4be4e1ce
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
}