shithub: mc

ref: 207d86eced0726bf8ce0eaeb6b6e06a40e47a2d9
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))
}