shithub: mc

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