methods-on-non-objects.phpt 279 B

1234567891011121314
  1. --TEST--
  2. Method calls on non-objects raise recoverable errors
  3. --FILE--
  4. <?php
  5. $x= null;
  6. $x->method();
  7. echo "Should not get here!\n";
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Uncaught Error: Call to a member function method() on null in %s:%d
  11. Stack trace:
  12. #0 {main}
  13. thrown in %s on line %d