shithub: mc

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