shithub: mc

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