shithub: mc

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