shithub: mc

ref: 0e147ba85f8128660474122f0a220b6b953d28cc
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
}