1 // PR c++/79228
2 // { dg-do compile { target c++14 } }
3 
4 #include <complex>
5 
main()6 int main()
7 {
8   using namespace std::complex_literals;
9   auto a = std::abs(0.0i);
10 }
11