bug60145.phpt 303 B

123456789101112131415161718
  1. --TEST--
  2. Bug #60145 (Usage of trait's use statement inside interfaces not properly checked.)
  3. --FILE--
  4. <?php
  5. trait foo {
  6. }
  7. interface MyInterface {
  8. use foo;
  9. public function b();
  10. }
  11. ?>
  12. --EXPECTF--
  13. Fatal error: Cannot use traits inside of interfaces. foo is used in MyInterface in %s on line %d