mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
11 lines
204 B
PHP
11 lines
204 B
PHP
--TEST--
|
|
Check that ReflectionAttribute is final
|
|
--FILE--
|
|
<?php
|
|
|
|
class T extends ReflectionAttribute {}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class T cannot extend final class ReflectionAttribute in %s on line %d
|