php-src/Zend/tests/ns_094.phpt

16 lines
301 B
Plaintext
Raw Normal View History

--TEST--
Type group use declarations should not allow override on inner itens
--FILE--
<?php
// should throw syntax errors
use const Foo\Bar\{
A,
const B,
function C
};
--EXPECTF--
Parse error: syntax error, unexpected 'const' (T_CONST), expecting identifier (T_STRING) in %s on line 7