summaryrefslogtreecommitdiff
path: root/spec/rubyspec/command_line/fixtures/debug_info.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/command_line/fixtures/debug_info.rb')
-rw-r--r--spec/rubyspec/command_line/fixtures/debug_info.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/rubyspec/command_line/fixtures/debug_info.rb b/spec/rubyspec/command_line/fixtures/debug_info.rb
deleted file mode 100644
index ee607910c0..0000000000
--- a/spec/rubyspec/command_line/fixtures/debug_info.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-a = 'string'
-b = a
-c = b
-d = c
-e = d
-begin
- a << 'new part'
-rescue Exception => e
- print e.message
-end