OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix PR c++/42915
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
crash-9.C
1
// Origin: PR c++/42915
2
// { dg-do compile }
3
4
template <typename T>
5
class A
6
{
7
template <typename U>
8
class B
9
{
10
B foo();
11
};
12
};
13
template <typename T> template <typename U>
14
A<T>::B<U> A<T>::B<U>::foo() {}
15