shithub: mc

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