diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2016-11-25 09:33:20 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2016-11-25 09:33:20 +0900 |
| commit | 55842c5a3482d507bae16f14f563a5eadfa0b720 (patch) | |
| tree | 410dcc9689d96e13a49b735eb85a4ed0b663670c /test/t/codegen.rb | |
| parent | d3ff9d31f0ee3775b5ed722515933aa7e79f7659 (diff) | |
| parent | 73e4f069becaf69707b990d658b34155f8973508 (diff) | |
| download | mruby-55842c5a3482d507bae16f14f563a5eadfa0b720.tar.gz mruby-55842c5a3482d507bae16f14f563a5eadfa0b720.zip | |
resolve conflict; ref #3279
Diffstat (limited to 'test/t/codegen.rb')
| -rw-r--r-- | test/t/codegen.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/t/codegen.rb b/test/t/codegen.rb index 7d6efdc98..1ac689a82 100644 --- a/test/t/codegen.rb +++ b/test/t/codegen.rb @@ -46,3 +46,11 @@ assert('method call with exactly 127 arguments') do 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ) end + +assert('nested empty heredoc') do + _, a = nil, <<B +#{<<A} +A +B + assert_equal "\n", a +end |
