ref: 358de40c2f56409ced4d76cd2c4201c609457dac
dir: /test/pkgtrait.myr/
use std
use regex
impl disposable regex.regex# =
__dispose__ = {r
regex.free(r)
}
;;
const main = {
var auto r : regex.regex#
r = std.try(regex.compile(".*"))
std.exit(42)
}