shithub: mc

ref: 2bc852bda98762d3bc01548bf972e3f1b137fbfb
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))
}