PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / sizeof15.C
blob3298dad3f94d7a73586b97f89f5651d27aacd0cc
1 // PR c++/55685
3 typedef __SIZE_TYPE__ size_t;
4 template <size_t T, size_t U>
5 struct A;
7 template <typename T> struct B
9   static A <sizeof (T), 0> x;
12 template <typename T>
13 A <sizeof (T), 0> B <T>::x;