1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/Zend/tests/class_uses_static.phpt
T
DanielEScherzer 702fb31894 zend_resolve_const_class_name_reference(): use double quotes around names (#15998)
This is a follow-up to #15990, as it turns out there was a second place that emits this kind of error message.
2024-09-23 09:59:48 +01:00

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