PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash87.C
blobaf81edbfd80a09da42a76679065830c6c8ec9c55
1 // Origin: PR c++/38357
2 // { dg-do compile }
4 class BUG
6 public:
7  bool name() { return true; }
8 };
10 template <bool T>
11 struct BUG1_5
16 template <bool name>
17 class BUG2 : BUG
19 public:
20  typedef BUG1_5<name> ptr; // { dg-error "convert" }
23 int main()
25  BUG2<false> b;
26  return 0;