URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic112.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c++/49420
// { dg-options -std=c++0x }
struct A { };
template <class T> struct B
{
typedef typename T::type type ; // { dg-error "no type" }
};
template <typename Array, typename... Args>
typename B<Array>::type
get(const Array& a, Args... args);
int main()
{
A a;
int x = get(a, 1, 2, 3); // { dg-error "no match" }
}