mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
053ef28b8d
RFC: https://wiki.php.net/rfc/attribute_amendments Support for attribute grouping is left out, because the short attribute syntax RFC will likely make it obsolete. Closes GH-5751.
10 lines
203 B
PHP
10 lines
203 B
PHP
--TEST--
|
|
Attributes: Prevent Attribute on non classes
|
|
--FILE--
|
|
<?php
|
|
|
|
<<Attribute>>
|
|
function foo() {}
|
|
--EXPECTF--
|
|
Fatal error: Attribute "Attribute" cannot target function (allowed targets: class) in %s
|