summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-10 00:35:02 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-07-10 00:35:02 +0000
commit5e32860fe41d0149f6ebcf0d814f93c69d038795 (patch)
treee07f1ca1947a00bcf822bd6e46aba395f82c2273 /test
parent078395bf8072f1722a3893a0396bee9edfabb48e (diff)
downloadruby-5e32860fe41d0149f6ebcf0d814f93c69d038795.tar.gz
ruby-5e32860fe41d0149f6ebcf0d814f93c69d038795.tar.xz
ruby-5e32860fe41d0149f6ebcf0d814f93c69d038795.zip
* test/soap/marshal/test_struct.rb: use qualified build-tin class name
(::Struct) to avoid name crash. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6609 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/soap/marshal/test_struct.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/soap/marshal/test_struct.rb b/test/soap/marshal/test_struct.rb
index d3c0a4e5e..33975c31b 100644
--- a/test/soap/marshal/test_struct.rb
+++ b/test/soap/marshal/test_struct.rb
@@ -6,8 +6,8 @@ module SOAP
module Marshal
-Foo1 = Struct.new("Foo1", :m)
-Foo2 = Struct.new(:m)
+Foo1 = ::Struct.new("Foo1", :m)
+Foo2 = ::Struct.new(:m)
class Foo3
attr_accessor :m
end