blob: e5e03146dbb223f42efc9d89a710595539365b62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// PR c++/8736
// Origin: Peter Kolloch <pkolloch@gmx.ne>
// { dg-do compile }
template <typename T> struct A
{
template <typename U> struct B
{
typedef int X;
};
};
template <typename T> void foo()
{
typedef typename A<T>::B<T>::X Y; // { dg-error "non-template" "non" }
// { dg-error "not declare" "decl" { target *-*-* } 15 }
// { dg-message "note" "note" { target *-*-* } 15 }
}
void bar()
{
foo<int>();
}
|