shithub: mc

ref: 1b52ea9d5660f5b21a465f59448941212b2f921e
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))
}