errmsg_027.phpt 242 B

12345678910111213141516
  1. --TEST--
  2. errmsg: class declarations may not be nested
  3. --FILE--
  4. <?php
  5. class test {
  6. function foo() {
  7. class test2 {
  8. }
  9. }
  10. }
  11. echo "Done\n";
  12. ?>
  13. --EXPECTF--
  14. Fatal error: Class declarations may not be nested in %s on line %d