shithub: mc

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