shithub: mc

ref: fdafa085a245d4f48f84c6875a6b7cb89b8b5c6c
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
}