shithub: mc

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