shithub: mc

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