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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
PR20399
/
FirstHeader.h
blob
43adf3d847ed5a76a60cfccc66e0fca02322af0d
1
#ifndef FIRSTHEADER
2
#define FIRSTHEADER
3
4
#include
"SecondHeader.h"
// Just a class which gets in the lazy deserialization chain
5
6
#include
"stl_map.h"
7
#include
"vector"
8
typedef std
::
map
<
int
>::
iterator el
;
9
10
inline
void
func
() {
11
std
::
vector
<
int
>::
func
();
12
}
13
14
#endif