shithub: mc

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