ref: fe70d97044e43edd472a36ebecec4269759b2fac
dir: /test/trait.myr/
use std trait frobable @a = frob : (val : @a -> @a) ;; impl frobable int = frob = {val -> val * 2 } ;; generic foo = {x : @a::frobable -> frob(x) } const main = { std.exit(foo(12)) }