bon (Nobuhide Nakabo), 12/28/2009 01:24 pm
Download (213 Bytes)
class Test
def self.test(&block)
block.call
end
class AAA
def aaa
p "---- super class ----"
class AAA_2 < AAA
Test.test do
super
AAA_2.new.aaa