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
/
SemaTemplate
/
nested-incomplete-class.cpp
blob
a4bfccb8d2798f02db54de43f8f8f1599e7f4fe7
1
// RUN: %clang_cc1 -fsyntax-only %s
2
3
template
<
typename T
>
4
struct
foo
{
5
struct
bar
;
6
7
bar
fn
() {
8
// Should not get errors about bar being incomplete here.
9
bar b
=
bar
(
1
,
2
);
10
return
b
;
11
}
12
};
13
14
template
<
typename T
>
15
struct
foo
<
T
>::
bar
{
16
bar
(
int
,
int
);
17
};
18
19
void
fn
() {
20
foo
<
int
>().
fn
();
21
}