From 24b3a3e7489181bb2fa1fd86bd93793a8cef6829 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 19 Nov 2001 16:20:24 +0000 Subject: * parse.y (str_extend): should not terminate string interpolation with newlines in here-docs and newline terminated strings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/test.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sample/test.rb') diff --git a/sample/test.rb b/sample/test.rb index b342fb8541..663a8695e1 100644 --- a/sample/test.rb +++ b/sample/test.rb @@ -865,6 +865,13 @@ s = "a string" s[0..s.size]="another string" test_ok(s == "another string") +s = <