summaryrefslogtreecommitdiff
path: root/Zend/tests/grammar/regression_010.phpt
blob: 0e535aad6b87fe8a14383794556f0906fc7d3fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
Test to check regressions on T_IMPLEMENTS followed by a T_NS_SEPARATOR
--FILE--
<?php

interface A{}

// No longer considered legal in PHP 8.
class B implements\A {}

echo "Done", PHP_EOL;

?>
--EXPECTF--
Parse error: syntax error, unexpected namespaced name "implements\A", expecting "{" in %s on line %d