shithub: mc

ref: 686c217308daa55a0fbe9ace3258767b80b6ba5b
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
}