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