summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/fixtures/string_literal_raw.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/command_line/fixtures/string_literal_raw.rb')
-rw-r--r--spec/ruby/command_line/fixtures/string_literal_raw.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/ruby/command_line/fixtures/string_literal_raw.rb b/spec/ruby/command_line/fixtures/string_literal_raw.rb
new file mode 100644
index 0000000000..56b1841296
--- /dev/null
+++ b/spec/ruby/command_line/fixtures/string_literal_raw.rb
@@ -0,0 +1,3 @@
+frozen = "test".frozen?
+interned = "test".equal?("test")
+puts "frozen:#{frozen} interned:#{interned}"