shithub: mc

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