# File lib/active_support/core_ext/string/output_safety.rb, line 33
        def concat_with_safety(other_or_fixnum)
          result = concat_without_safety(other_or_fixnum)
          unless html_safe? && also_html_safe?(other_or_fixnum)
            @_rails_html_safe = false
          end
          result
        end