summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_010.phpt
blob: 5dc90f288a327e4c18439ad79a269f8120cc0d61 (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;

--EXPECTF--

Done