shithub: mc

ref: 76fe8d4412f3854075000a0718e30abdfd7a9087
dir: /test/pkgtrait.myr/

View raw version
use std
use regex

impl disposable regex.regex# =
	__dispose__ = {r
		regex.free(r)
	}
;;

const main = {
	auto std.try(regex.compile(".*"))
	std.exit(42)
}