2010-04-20 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gnat.dg / regpat1.adb
blobfdd258942a3c92b1602c3b702bc717d8ad5c9e22
1 -- { dg-do run }
3 with GNAT.Regpat; use GNAT.Regpat;
4 procedure regpat1 is
5 begin
6 declare
7 Re : Pattern_Matcher := Compile ("a[]b");
8 begin
9 raise Program_Error;
10 end;
11 exception
12 when Expression_Error => null;
13 end regpat1;