summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--test/soap/marshal/test_struct.rb4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cbbda5f72..ec638dacd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jul 10 09:30:24 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
+
+ * test/soap/marshal/test_struct.rb: use qualified build-tin class name
+ (::Struct) to avoid name crash.
+
Sat Jul 10 04:21:56 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk.rb: better operation for SIGINT when processing
diff --git a/test/soap/marshal/test_struct.rb b/test/soap/marshal/test_struct.rb
index d3c0a4e5e8..33975c31b0 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