self_parent.phpt 155 B

123456789101112
  1. --TEST--
  2. Allow self and parent in use const statement
  3. --FILE--
  4. <?php
  5. namespace {
  6. use const self as foo;
  7. use const parent as bar;
  8. }
  9. ?>
  10. --EXPECT--