mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
5d869df753
Throw a compile error for "static" references instead, where it isn't already the case. Also extract the code that does that -- we have quite a few places where we get a const class ref and require it to be default.
13 lines
239 B
PHP
13 lines
239 B
PHP
--TEST--
|
|
ZE2 Late Static Binding ensuring implementing 'static' is not allowed
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo implements static {
|
|
}
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECTF--
|
|
Fatal error: Cannot use 'static' as interface name, as it is reserved in %s on line %d
|