From 607aa11711a7975540e1d71c2616ae5533feb35a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 23 Mar 2021 17:20:19 +0900 Subject: Ignore useless separators preceding a file encoding comment --- test/ruby/test_parse.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/ruby/test_parse.rb b/test/ruby/test_parse.rb index 3f2deabedd..493042ef67 100644 --- a/test/ruby/test_parse.rb +++ b/test/ruby/test_parse.rb @@ -692,6 +692,14 @@ x = __ENCODING__ x = __ENCODING__ END end + + assert_nothing_raised do + eval <<-END, nil, __FILE__, __LINE__+1 +# xxxx : coding sjis +x = __ENCODING__ + END + end + assert_equal(__ENCODING__, x) end def test_utf8_bom -- cgit v1.2.3