mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
11 lines
203 B
PHP
11 lines
203 B
PHP
--TEST--
|
|
Internal attribute targets are validated.
|
|
--FILE--
|
|
<?php
|
|
|
|
#[Attribute]
|
|
function a1() { }
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Attribute "Attribute" cannot target function (allowed targets: class) in %s
|