ref: c7e6d109bcd7e0d0b33c5e134c83e3efe9154ef9
dir: /test/implexpr-concrete.myr/
use std
trait name @a =
Name: byte[:]
;;
impl name void =
Name = "zig"
;;
impl name int =
Name = "zag"
;;
const main = {
std.put("{}{}\n", impl(Name, void), impl(Name, int))
}