* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gnat.dg / handle_raise_from_pure.adb
blob0248d350d712cef8c0d6c6aa076c84b632817ad0
1 -- { dg-do run }
2 -- { dg-options "-O2" }
3 with Ada.Text_Io; use Ada.Text_IO;
4 with Raise_From_Pure; use Raise_From_Pure;
5 procedure handle_raise_from_pure is
6 K : Integer;
7 begin
8 K := Raise_CE_If_0 (0);
9 exception
10 when others => Put_Line ("exception caught");
11 end;