shithub: mc

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