mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
17 lines
239 B
PHP
17 lines
239 B
PHP
--TEST--
|
|
Validation of attribute repetition (is allowed; internal attribute)
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
|
|
#[ZendTestRepeatableAttribute]
|
|
#[ZendTestRepeatableAttribute]
|
|
const MY_CONST = true;
|
|
|
|
echo "Done\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
Done
|