shithub: mc

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