#!/usr/bin/ruby

# We should be able to run directly from git repo
$LOAD_PATH.unshift(File.dirname(__FILE__))

puts 'Will raise.'

module WillModule
  6.times do
    7.times do
      require 'will_crash'
    end
  end
end
