module Thing
  @@foo = nil
  p @@foo

  class_eval <<-EOS
    p @@foo
    def self.check_foo
      p @@foo
    end
  EOS
end

Thing.check_foo