repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[ELF] Avoid make in elf::writeARMCmseImportLib
[llvm-project.git]
/
clang
/
test
/
Index
/
complete-access-checks-crash.cpp
blob
c7ac4d656378770237445955e17b62529f589e80
1
struct
Base
{
2
protected
:
3
bool
bar
();
4
};
5
struct
Derived
:
Base
{
6
};
7
8
struct
X
{
9
int
foo
() {
10
Derived
().
// RUN: c-index-test -code-completion-at=%s:10:15 %s | FileCheck %s
11
// CHECK: bar{{.*}}(inaccessible)
12
}
13
};