17 lines
250 B
PHP
17 lines
250 B
PHP
--TEST--
|
|
Literal compaction should take method calls on literals into account
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
(42)->foo();
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
Call to a member function foo() on int
|