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-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
friend-class-nodecl.cpp
blob
41e2da6a554d26c998de2467df8d3056defb38f2
1
// RUN: %clang_cc1 -ast-print %s -o %t
2
// RUN: not grep '^ *class B' %t
3
4
// Tests that the tag decls in friend declarations aren't added to the
5
// declaring class's decl chain.
6
7
class
A
{
8
friend class
B
;
9
};
10