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]
/
lldb
/
test
/
API
/
lang
/
cpp
/
incompatible-class-templates
/
main.cpp
blob
e90b96c1dbe2cfcf6a49515bd1ef2b199a44c97b
1
int
other
();
2
3
namespace
{
4
template
<
typename T1
>
struct
Temp
{
int
x
; };
5
// This emits the 'Temp' template in this TU.
6
Temp
<
float
>
Template1
;
7
}
// namespace
8
9
int
main
() {
10
return
Template1
.
x
+
other
();
// break here
11
}