// module test_22b2_instance_present class TShow a { fn tshow(x: own a) -> own Str } instance TShow Int { fn tshow { |x: a| -> Str { "n" } } } fn main() -> own Str { tshow(42) }