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
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CXX
/
class.derived
/
class.virtual
/
p12.cpp
blob
208a0d155fe71a0c5ecd0e4a828fe74710b5528f
1
// RUN: %clang_cc1 -ast-print %s | FileCheck %s
2
3
// CHECK: test12_A::foo()
4
struct
test12_A
{
5
virtual
void
foo
();
6
7
void
bar
() {
8
test12_A
::
foo
();
9
}
10
};
11
12
// CHECK: xp->test24_B::wibble()
13
struct
test24_B
{
14
virtual
void
wibble
();
15
};
16
17
void
foo
(
test24_B
*
xp
) {
18
xp
->
test24_B
::
wibble
();
19
}