mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
702fb31894
This is a follow-up to #15990, as it turns out there was a second place that emits this kind of error message.
13 lines
209 B
PHP
13 lines
209 B
PHP
--TEST--
|
|
Class cannot use static as a trait, as it is reserved
|
|
--FILE--
|
|
<?php
|
|
|
|
class Test {
|
|
use static;
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use "static" as trait name, as it is reserved in %s on line %d
|