shithub: mc

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