Removed modules/contrib/media module to allow update to the core media module
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / nestedInlineHTML.test
1 InlineHTML node nested inside other code
2 -----
3 <?php
4
5 function test() {
6     ?>
7 Test
8     <?php
9 }
10 -----
11 function test()
12 {
13     ?>
14 Test
15     <?php
16 }