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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.dg
/
template
/
access14.C
blob
047f9258f2f8151dd71251ebde46eb238720023c
1
// PR c++/14777
2
3
template <typename T>
4
struct B
5
{
6
protected:
7
typedef int M;
8
};
9
10
template <typename T>
11
struct A : B<T> {
12
typedef typename B<T>::M N;
13
A (int = N ());
14
};
15
16
A<int> a = A<int> ();