blob: e0b6ee19881e3a9655d54ef9edf435de2c7f0f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin: PR c++/37142
// { dg-do compile }
template<typename T, const T a, template <typename U, U u> class W> struct A {};
template<typename T, const T t> struct B {};
int
main ()
{
A<long, 0, B> a;
return 0;
}
|