shithub: mc

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