shithub: mc

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