blob: 6fe247cc30df0697079f0b4fdd85ac7863279a86 (
plain)
1
2
3
4
5
6
7
8
|
// PR c++/39750
template < unsigned >
struct A ;
template < typename >
struct B ;
template < typename T , A < B < T > // { dg-error "initializer|parse error|valid type|expected" }
{ }
|