difftastic/vendor/tree-sitter-hack/test/cases/declarations/use-trait.hack

13 lines
147 B
Plaintext

class C {
use A;
use B<int>;
use C, D { D as E; }
use F, G<vec<int>>, H {
H::methodG insteadof G;
G::methodH insteadof H;
}
}