shithub: mc

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