diff options
Diffstat (limited to 'spec/ruby/command_line/fixtures/debug_info.rb')
| -rw-r--r-- | spec/ruby/command_line/fixtures/debug_info.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/ruby/command_line/fixtures/debug_info.rb b/spec/ruby/command_line/fixtures/debug_info.rb new file mode 100644 index 0000000000..f02b041920 --- /dev/null +++ b/spec/ruby/command_line/fixtures/debug_info.rb @@ -0,0 +1,10 @@ +a = 'string' +b = a +c = b +d = c +e = d +begin + a << 'new part' +rescue Exception => e + print e.message +end |
