blob: 7dcc19d554f203b082787a8c0696cd806357afd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// { dg-do run { xfail { powerpc*-*-linux* && broken_cplxf_arg } } }
// PR libstdc++/10689
// Origin: Daniel.Levine@jhuaph.edu
// { dg-options "-mieee" { target alpha*-*-* } }
#include <complex>
#include <testsuite_hooks.h>
int main()
{
std::complex<double> z;
VERIFY( pow(z, 1.0/3.0) == 0.0 );
return 0;
}
|