mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
966d22b1bd
Closes GH-9136 Closes GH-9138 Closes GH-9172
11 lines
216 B
PHP
11 lines
216 B
PHP
--TEST--
|
|
GH-9136: Assertion when fetching property of magic constant in constant expression
|
|
--FILE--
|
|
<?php
|
|
|
|
const C = __file__->foo;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Attempt to read property "foo" on string in %s on line %d
|