shithub: mc

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