shithub: mc

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