tolerant-php-parser
tolerant-php-parser copied to clipboard
Should produce errors on expected scoped property access expressions in trait select clauses
trafficstars
The code below is currently improperly parsed without errors.
class A {
use \A {
\a as b;
\b insteadof C;
}
}