PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / bip_overlay.adb
blobc4a38499bc2a9fea996260671b18c50cc161eeca
1 -- { dg-do compile }
3 with System;
5 package body BIP_Overlay
6 with
7 SPARK_Mode
8 is
9 function Init return X
11 begin
12 return Result : X do
13 Result.E := 0;
14 end return;
15 end Init;
17 I : X := Init
18 with
19 Volatile,
20 Async_Readers,
21 Address => System'To_Address (16#1234_5678#);
23 end BIP_Overlay;