shithub: mc

ref: 3d9e396e9696c1aa2290fce09626c33d15e1ea03
dir: /test/emptytrait.myr/

View raw version
use std

trait fooable @a =
;;

impl fooable int =
;;

generic foo = {x : @a::fooable @a
	-> x
}

const main = {
	std.exit(foo(123))
}