15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
|
|
--TEST--
|
||
|
|
defining const with same name as imported should fail
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
namespace {
|
||
|
|
use const foo\bar;
|
||
|
|
|
||
|
|
const bar = 42;
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECTF--
|
||
|
|
Fatal error: Cannot declare const bar because the name is already in use in %s on line %d
|