123456789101112131415161718192021 |
- --TEST--
- Misoptimization when variable is modified by assert()
- --INI--
- zend.assertions=1
- --FILE--
- <?php
- function test() {
- $i = 0;
- assert('$i = new stdClass');
- $i += 1;
- var_dump($i);
- }
- test();
- ?>
- --EXPECTF--
- Deprecated: assert(): Calling assert() with a string argument is deprecated in %s on line %d
- Notice: Object of class stdClass could not be converted to number in %s on line %d
- int(2)
|