bug78658.phpt 244 B

1234567891011121314
  1. --TEST--
  2. Bug #78658: Memory corruption using Closure::bindTo()
  3. --FILE--
  4. <?php
  5. $c = function(){};
  6. $scope = "AAAA";
  7. $scope = "{$scope}BBBB";
  8. $c->bindTo(new stdClass, $scope);
  9. ?>
  10. --EXPECTF--
  11. Warning: Class "AAAABBBB" not found in %s on line %d