shithub: mc

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