18 lines
331 B
PHP
18 lines
331 B
PHP
--TEST--
|
|
(unset) cast must not be allowed in constant expressions
|
|
--CREDITS--
|
|
Viet Hoang Luu (@vi3tL0u1s)
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
class C {
|
|
public $p = (unset) C::class;
|
|
}
|
|
new C;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: The (unset) cast is no longer supported in %s on line %d
|