shithub: mc

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