parser/tests/0014/code.php
Saif Eddin Gmati 017b2e19c3
chore: use new integration test runner instead of assert_ast() (#127)
Signed-off-by: azjezz <azjezz@protonmail.com>

Signed-off-by: azjezz <azjezz@protonmail.com>
2022-11-29 01:33:01 +00:00

23 lines
240 B
PHP

<?php
class Foo2 {
use B {
foo as protected bar;
}
}
class Bar2 {
use B,
C {
B::foo insteadof C;
}
}
class Bar3 {
use B { B::foo as bar; }
}
class Bar4 {
use B { foo as bar; }
}