shithub: mc

ref: 7f941fe7689b6085a18d67389eb7cd7f8b3fae48
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)
}