bug51791.phpt 258 B

1234567891011121314
  1. --TEST--
  2. Bug #51791 (constant() failed to check undefined constant and php interpreter stoped)
  3. --FILE--
  4. <?php
  5. class A {
  6. const B = 1;
  7. }
  8. var_dump(constant('A::B1'));
  9. ?>
  10. --EXPECTF--
  11. Warning: constant(): Couldn't find constant A::B1 in %s on line %d
  12. NULL