xref: /php-src/Zend/tests/gh10014.phpt (revision 5aa5080e)
1--TEST--
2GH-10014: Incorrect short-circuiting in constant expressions
3--FILE--
4<?php
5
6#[Attribute(+[[][2]?->y]->y)]
7class y {
8}
9
10(new ReflectionClass(y::class))->getAttributes()[0]->newInstance();
11
12?>
13--EXPECTF--
14Warning: Undefined array key 2 in %s on line %d
15
16Warning: Attempt to read property "y" on array in %s on line %d
17