ru_php/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