repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2013-09-12 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
debug
/
localclass1.C
blob
db36d592cf524fd5c844b427fffd68b805295afb
1
// PR c++/52637
2
// { dg-options "-g -std=c++11" }
3
4
template <typename T>
5
struct C { };
6
7
template <typename V>
8
void f(V v) {
9
struct B {};
10
C<B> c;
11
}
12
13
template <typename T>
14
void g(T t) {
15
struct A { } a;
16
f (a);
17
}
18
19
struct D {
20
void h() { g(0); }
21
};