Files
clang-p2996/clang/test/CodeCompletion/member-access.cpp
Denis Fatkulin 8837ef4d37 [clang] Apply FixIts to members declared via using in derived classes
FixIt don't switch to arrow in derrived members with `using`

Example code:
```
struct Bar {
  void foo();
};
struct Baz {
  using Bar::foo;
};
void test(Baz* ptr) {
  ptr.^
}

Reviewed By: kadircet

Differential Revision: https://reviews.llvm.org/D131088
2022-08-17 10:09:48 +02:00

12 KiB