shithub: mc

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