php-parser/test/code/prettyPrinter/expr/constant_deref.test

14 lines
142 B
Plaintext
Raw Normal View History

Constant/literal dereferencing
-----
<?php
FOO[0];
FOO::BAR[0];
'FOO'[0];
array(FOO)[0];
-----
FOO[0];
FOO::BAR[0];
'FOO'[0];
array(FOO)[0];