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
PR c++/86728 - C variadic generic lambda.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
pr84789.C
blob
63b9832fecf885f233d4647b60f165e81bc240c1
1
// { dg-do compile }
2
3
struct A
4
{
5
typedef int I;
6
};
7
8
template<typename> struct B : A {};
9
10
template<typename T> struct C : B<T>
11
{
12
B<T>::A::I::I i; // { dg-error "not a class type|does not name a type|typename" }
13
};