shithub: mc

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