shithub: mc

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