1--TEST-- 2Test to check regressions on T_IMPLEMENTS followed by a T_NS_SEPARATOR 3--FILE-- 4<?php 5 6interface A{} 7 8class B implements\A {} 9 10echo "Done", PHP_EOL; 11--EXPECTF-- 12Done 13