aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/suppress_initialization2.ads
blob: 2594ab14804298596df71b317264e51b417ddb1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma Initialize_Scalars;

with System;

package Suppress_Initialization2 is

   subtype Sub_Addr is System.Address with Suppress_Initialization;

   O : Sub_Addr with Thread_Local_Storage;  -- OK: no error should be reported

   procedure Dummy;

end Suppress_Initialization2;