shithub: mc

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