shithub: mc

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