summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/specs/alignment1.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gnat.dg/specs/alignment1.ads')
-rw-r--r--gcc/testsuite/gnat.dg/specs/alignment1.ads11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/specs/alignment1.ads b/gcc/testsuite/gnat.dg/specs/alignment1.ads
new file mode 100644
index 000000000..cffcba138
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/specs/alignment1.ads
@@ -0,0 +1,11 @@
+-- { dg-do compile }
+
+package Alignment1 is
+ S : Natural := 20;
+ pragma Volatile (S);
+
+ type Block is array (1 .. S) of Integer;
+ for Block'Alignment use 128;
+
+ B : Block;
+end;