1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 12:13:02 +02:00
Files
archived-php-src/ext/reflection/tests/bug74673.phpt
2019-06-05 14:53:50 +02:00

23 lines
396 B
PHP

--TEST--
Bug #74673 (Segfault when cast Reflection object to string with undefined constant)
--FILE--
<?php
class A
{
public function method($test = PHP_SELF + 1)
{
}
}
$class = new ReflectionClass('A');
echo $class;
?>
--EXPECTF--
Fatal error: Uncaught Error: Undefined constant 'PHP_SELF' in %s:%d
Stack trace:
#0 %s(%d): ReflectionClass->__toString()
#1 {main}
thrown in %s on line %d