shithub: mc

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