# File lib/active_support/core_ext/kernel/reporting.rb, line 17
  def enable_warnings
    old_verbose, $VERBOSE = $VERBOSE, true
    yield
  ensure
    $VERBOSE = old_verbose
  end