shithub: mc

ref: 5818bcb7a0fb78af6a4c2816a72db5b1381e9cac
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
}