shithub: mc

ref: 4121d26d2915e65e517a4bfb0b401b41349fdaa5
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable
	-> x
}

const main = {
	std.exit(foo(123))
}