shithub: mc

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