bug60145.phpt 294 B

1234567891011121314151617
  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. --EXPECTF--
  12. Fatal error: Cannot use traits inside of interfaces. foo is used in MyInterface in %s on line %d