llvm-project/clang/test/Index/complete-access-checks-crash.cpp
Ilya Biryukov 55b1b157b6 [CodeComplete] Fix the crash in code completion on access checking
Started crashing in r337453. See the added test case for the crash repro.

The fix reverts part of r337453 that causes the crash and does
not actually break anything when reverted.

llvm-svn: 338255
2018-07-30 15:19:05 +00:00

14 lines
223 B
C++

struct Base {
protected:
bool bar();
};
struct Derived : Base {
};
struct X {
int foo() {
Derived(). // RUN: c-index-test -code-completion-at=%s:10:15 %s | FileCheck %s
// CHECK: bar{{.*}}(inaccessible)
}
};