shithub: mc

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