summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_010.phpt
blob: 90b864f79b8a79f681e2014e2b93c4609c601746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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;

--EXPECT--

Done