shithub: mc

ref: cc61b84219f29c4bf874e579986ef77bcc6a0ad3
dir: /test/derefassign.myr/

View raw version
use std
/* should assign to v through pointer p, exiting with 123 */
const main = {
	var p
	var v

	p = &v
	p# = 123
	std.exit(v)
}