shithub: mc

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