shithub: mc

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