shithub: mc

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