blob: 58d0fc5909b60c3ea9eb705ce09788b5c1c0ab4a [file] [log] [blame]
// PR libbstdc++/10689
// Origin: Daniel.Levine@jhuaph.edu
#include <complex>
#include <testsuite_hooks.h>
int main()
{
std::complex<double> z;
VERIFY( pow(z, 1.0/3.0) == 0.0 );
return 0;
}