c++: robustify testcase [PR109752]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / complex_literals1.C
blob5ae2370c3ffdf226fded112ec2fa81d393881fb4
1 // PR c++/79228
2 // { dg-do compile { target c++14 } }
4 #include <complex>
6 int main()
8   using namespace std::complex_literals;
9   auto a = std::abs(0.0i);