From 8afda8d7b7988719515e1a18879990bc41147776 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: http://svn.ruby-lang.org/repos/ruby/trunk@1848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/test.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'sample') diff --git a/sample/test.rb b/sample/test.rb index b342fb854..663a8695e 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 = <