mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
14 lines
177 B
PHP
14 lines
177 B
PHP
--TEST--
|
|
Test to check regressions on T_IMPLEMENTS followed by a T_NS_SEPARATOR
|
|
--FILE--
|
|
<?php
|
|
|
|
interface A{}
|
|
|
|
class B implements\A {}
|
|
|
|
echo "Done", PHP_EOL;
|
|
|
|
--EXPECTF--
|
|
|
|
Done
|