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
/
CXX
/
temp
/
temp.res
/
temp.local
/
p7.cpp
blob
3fa9c995260939e3c04ee1856f75ea9a4bf03988
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
4
template
<
class
T
>
struct
A
{
5
int
B
;
6
int
f
();
7
};
8
9
template
<
class
B
>
int
A
<
B
>::
f
() {
10
return
B
;
11
}