shithub: mc

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