shithub: mc

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