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] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
Modules
/
hidden-names.cpp
blob
ba945a1d3c8b2bd265d80b05f90323ce592c2a7d
1
// RUN: rm -rf %t
2
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/hidden-names %s -verify
3
// expected-no-diagnostics
4
5
#include
"visible.h"
6
7
using namespace
NS
;
8
9
namespace
{
10
struct
X
{
void
f
(); };
11
}
12
13
void
X
::
f
() {}