mirror of
https://github.com/php/php-src.git
synced 2024-12-19 23:11:42 +08:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
13 lines
317 B
PHP
13 lines
317 B
PHP
--TEST--
|
|
Bug #47704 (crashes on some "bad" operations with string offsets)
|
|
--FILE--
|
|
<?php
|
|
$s = "abd";
|
|
$s[0]->a += 1;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'EngineException' with message 'Cannot use string offset as an object' in %sbug47704.php:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug47704.php on line %d
|