ref: b7be6fd5a31f8563949c2a7ac6db10f8b9ad0126
dir: /test/matchnsconst.myr/
use std const main = { var v v = std.Badchar match v | std.Maxcharval: std.put("matched maxcharval\n") | std.Badchar: std.put("matched badchar\n") | 'c': std.put("matched 'c'\n") | _: std.die("Impossible match failure in pattern\n") ;; }