Merge from the pain train
[official-gcc.git] / libstdc++-v3 / testsuite / 26_numerics / complex / pow.cc
blobd0b8e901f8cc37c3ac6be6504e89d13be8edbf04
1 // { dg-do run { xfail broken_cplxf_arg } }
2 // PR libstdc++/10689
3 // Origin: Daniel.Levine@jhuaph.edu
4 // { dg-options "-mieee" { target alpha*-*-* } }
6 #include <complex>
7 #include <testsuite_hooks.h>
9 int main()
11 std::complex<double> z;
13 VERIFY( pow(z, 1.0/3.0) == 0.0 );
15 return 0;