Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / expr / constant_deref.test
1 Constant/literal dereferencing
2 -----
3 <?php
4
5 FOO[0];
6 FOO::BAR[0];
7 'FOO'[0];
8 array(FOO)[0];
9 -----
10 FOO[0];
11 FOO::BAR[0];
12 'FOO'[0];
13 array(FOO)[0];