shithub: mc

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