tree-optimization/116974 - Handle single-lane SLP for OMP scan store
[official-gcc.git] / gcc / testsuite / g++.dg / template / dtor2.C
blobd8b6b4f5cb1ab9e431039b30e0282224c1b65c03
1 struct Foo
3     template <int i>
4     ~Foo() {} // { dg-error "5:destructor .Foo::~Foo\\\(\\\)." }
5 };
7 int main()
9    Foo f;