shithub: mc

ref: e1bfd3ee239d17bd45b7cc2caa671a91e0774304
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}