summaryrefslogtreecommitdiffhomepage
path: root/test/t/module.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-04-30 09:58:23 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-04-30 09:58:23 +0900
commit2cb54e4b9d523e85b65a30b7af593791e8ac83f0 (patch)
treed9535d70ba74920783864fa6372ec471aca5af91 /test/t/module.rb
parent0bdc87d2396a607d05bad06e4e6d2d0bc0bc8f76 (diff)
parentab67c57f652c7c3a64ec4f4dc73259a14fb1b545 (diff)
downloadmruby-2cb54e4b9d523e85b65a30b7af593791e8ac83f0.tar.gz
mruby-2cb54e4b9d523e85b65a30b7af593791e8ac83f0.zip
Merge pull request #2160 from nobu/space
Space
Diffstat (limited to 'test/t/module.rb')
-rw-r--r--test/t/module.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/t/module.rb b/test/t/module.rb
index 48a09f720..585774a4b 100644
--- a/test/t/module.rb
+++ b/test/t/module.rb
@@ -485,19 +485,19 @@ end
assert('Issue 1467') do
module M1
def initialize()
- super()
+ super()
end
end
- class C1
- include M1
- def initialize()
- super()
+ class C1
+ include M1
+ def initialize()
+ super()
end
end
class C2
- include M1
+ include M1
end
C1.new