shithub: mc

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