access_modifiers_013.phpt 238 B

123456789101112
  1. --TEST--
  2. Prevent abstract and final in the same class declaration
  3. --FILE--
  4. <?php
  5. final abstract class C {
  6. private function priv() { }
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Cannot use the final modifier on an abstract class in %s on line %d