shithub: mc

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