ref: 11d385224d630ae234c7e8c4212cfefac8fd167d
dir: /test/implexpr.myr/
use std trait favorite @a = Fav : @a ;; impl favorite int = Fav = 12 ;; impl favorite char = Fav = 'z' ;; impl favorite byte[:] = Fav = "hello" ;; const main = { std.put("{},{},{}\n", impl(Fav, int), impl(Fav, char), impl(Fav, byte[:])) }