2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr81659.C
blob3696957532ea382c1ca5b3282f46e878d5f34670
1 // { dg-do compile }
3 void
4 a (int b)
6   if (b)
7     throw;
8   try
9     {
10       a (3);
11     }
12   catch (int)
13     {
14     }
15   catch (int)
16     {
17     }