shithub: mc

ref: 4bbf79843d318582ae08b2e2d656a0dd1217fe42
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))
}