# frozen_string_literal: true # Foo class class Foo def initialize @foo = 'baz' end def bar @foo end end