You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
316 B

15 years ago
  1. --TEST--
  2. Bug #51709 (Can't use keywords as method names)
  3. --FILE--
  4. <?php
  5. class foo {
  6. static function for() {
  7. echo "1";
  8. }
  9. }
  10. ?>
  11. ===DONE===
  12. <?php exit(0); ?>
  13. --EXPECTF--
  14. Parse error: syntax error, unexpected 'for' (T_FOR), expecting identifier (T_STRING) in %sbug51709_1.php on line %d