PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / dtor2.C
blob04bea9cb640cd0323a701fe4c00aef97f029b869
1 struct Foo
3     template <int i>
4     ~Foo() {} // { dg-error "" }
5 };
7 int main()
9    Foo f;