⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby 1.8
All Projects
Ruby
»
Ruby 1.8
Overview
Activity
Roadmap
Issues
Wiki
Like
Download (213 Bytes)
Bug #2537
» test.rb
bon (Nobuhide Nakabo)
, 12/28/2009 01:24 PM
class
Test
def
self
.
test
(
&
block
)
block
.
call
end
end
class
AAA
def
aaa
p
"---- super class ----"
end
end
class
AAA_2
<
AAA
def
aaa
Test
.
test
do
super
end
end
end
AAA_2
.
new
.
aaa
(1-1/1)
Loading...