blob: f2899d9724a56e66dc7e2b76fda086e68b2a7788 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Check that ReflectionAttribute is final
--FILE--
<?php
class T extends ReflectionAttribute {}
?>
--EXPECTF--
Fatal error: Class T may not inherit from final class (ReflectionAttribute) in %s on line %d
|