shithub: mc

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