shithub: mc

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