1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/attributes/constants/repeatable-internal.phpt

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