URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [parse/] [missing-template1.C] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
// 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>();
}
Go to most recent revision | Compare with Previous | Blame | View Log