shithub: mc

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