shithub: mc

ref: 9892228031c0ffcfa95a1443fc565b031525bb3a
dir: /test/implexpr-concrete.myr/

View raw version
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))
}