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
/
p2.cpp
blob
87e0f7486154566a94ceb304a61f06320b29e16a
1
// RUN: %clang_cc1 %s -fsyntax-only -verify
2
// expected-no-diagnostics
3
4
// "During the lookup for a base class name, non-type names are ignored"
5
namespace
PR5840
{
6
struct
Base
{};
7
int
Base
=
10
;
8
struct
Derived
:
Base
{};
9
}