shithub: mc

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