mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
1179686f62
Closes GH-5446 Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
11 lines
153 B
PHP
11 lines
153 B
PHP
--TEST--
|
|
Cannot take property of a string
|
|
--FILE--
|
|
<?php
|
|
|
|
"foo"->bar;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Attempt to read property 'bar' on string in %s on line %d
|