# typed: false
# frozen_string_literal: true

def my_method
  if a
    do_thing_0
  else
    if b
      do_thing_1
      do_thing_2
    end
  end
end
