shithub: mc

ref: 71af8b2acb1e7eefa2101f0074e4fe0a631a6220
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))
}