// module test_22b2_instance_present

class TShow a {
  fn tshow(x: a) -> Str
}

instance TShow Int {
  fn tshow {
    |x: a| -> Str {
      "n"
    }
  }
}

fn main() -> Str {
  tshow(42)
}
