shithub: mc

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