shithub: mc

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