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
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
partial14.C
blob
3870164f0ec67342cb57e8c5ec64d7f9decef5a3
1
// PR c++/59044
2
3
template <class T>
4
class C {
5
private:
6
template <T a, T b>
7
struct Implementation {};
8
public:
9
typedef typename Implementation<0, 0>::Typedef Type;
10
};
11
12
template <class T>
13
template <T b>
14
struct C<T>::Implementation<0, b> { typedef void Typedef; };
15
16
template class C<unsigned>;