PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / opt / complex3.C
blobee1b616e4036395848c9fcc1c31f0d127b549d6a
1 // PR 22022
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 _Complex float f();
6 _Complex float g();
7 _Complex float h()throw();
8 void i(float)throw();
10 void j(void)
12   _Complex float x = h();
13   try
14   {
15     try
16     {
17       x = f();
18     }catch (...)
19     {
20       x += g();
21     }
22   }catch(...){}
23   i(__builtin_crealf(x)+__builtin_cimagf(x));