shithub: mc

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