shithub: mc

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