shithub: mc

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