/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/classes/bug29446.phpt
19 строк
355 B
Gabriel Caruso
Trim trailing whitespace in tests
14 окт 2018, 18:07
Не верифицирован
14 окт 2018, 18:07
9c144e0
Код
Авторство
О чём код?
--TEST-- Bug #29446 (ZE allows multiple declarations of the same class constant) --FILE-- <?php class testClass { const TEST_CONST = 'test'; const TEST_CONST = 'test1'; function testClass() { echo self::TEST_CONST; } } $test = new testClass; ?> --EXPECTF-- Fatal error: Cannot redefine class constant testClass::TEST_CONST in %s on line 5