shithub: mc

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