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

38 lines
496 B
Ruby
Raw Normal View History

BEGIN {
puts "begin1"
local_begin1 = "local_begin1"
$global_begin1 = "global_begin1"
ConstBegin1 = "ConstBegin1"
}
BEGIN {
puts "begin2"
}
# for scope check
raise if defined?(local_begin1)
raise unless defined?($global_begin1)
raise unless defined?(::ConstBegin1)
local_for_end2 = "end2"
$global_for_end1 = "end1"
puts "main"
END {
puts local_for_end2
}
END {
raise
puts "should not be dumped"
}
END {
exit
puts "should not be dumped"
}
END {
puts $global_for_end1
}