1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/ruby/beginmainend.rb
matz 83cb605d69 * object.c (convert_type): [ruby-core:03845]
* eval.c (rb_funcall_rescue): new function.

* object.c (rb_Array): avoid using rb_respond_to().

* object.c (rb_Integer): ditto.

* eval.c (get_backtrace): no conversion for nil.

* parse.y (reduce_nodes): empty body should return nil.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-11-29 06:09:40 +00:00

80 lines
834 B
Ruby

errout = ARGV.shift
BEGIN {
puts "b1"
local_begin1 = "local_begin1"
$global_begin1 = "global_begin1"
ConstBegin1 = "ConstBegin1"
}
BEGIN {
puts "b2"
BEGIN {
puts "b2-1"
}
}
# for scope check
raise if defined?(local_begin1)
raise unless defined?($global_begin1)
raise unless defined?(::ConstBegin1)
local_for_end2 = "e2"
$global_for_end1 = "e1"
puts "main"
END {
puts local_for_end2 # e2
}
eval <<EOE
BEGIN {
puts "b3"
BEGIN {
puts "b3-1"
}
}
BEGIN {
puts "b4"
}
END {
puts "e3"
}
END {
puts "e4"
END {
puts "e4-1"
END {
puts "e4-1-1"
}
}
END {
puts "e4-2"
}
}
EOE
END {
exit
puts "should not be dumped"
END {
puts "not reached"
}
}
END {
puts $global_for_end1 # e1
END {
puts "e1-1"
}
}