shithub: mc

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