shithub: mc

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