tolerant-php-parser icon indicating copy to clipboard operation
tolerant-php-parser copied to clipboard

Should produce errors on expected scoped property access expressions in trait select clauses

Open mousetraps opened this issue 8 years ago • 0 comments
trafficstars

The code below is currently improperly parsed without errors.

class A {
    use \A {
        \a as b;
        \b insteadof C;
    }
}

mousetraps avatar Feb 12 '17 22:02 mousetraps