shithub: mc

ref: 34aa8c1dd116b9148c469c992ee7f21d39d99c3c
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}