shithub: mc

ref: 99bd0e314a7050f7ac4ae2c33207be08aa5c4507
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))
}