aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gm2/pim/pass/hexstring.mod
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gm2/pim/pass/hexstring.mod')
-rw-r--r--gcc/testsuite/gm2/pim/pass/hexstring.mod16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/testsuite/gm2/pim/pass/hexstring.mod b/gcc/testsuite/gm2/pim/pass/hexstring.mod
new file mode 100644
index 0000000..9299282
--- /dev/null
+++ b/gcc/testsuite/gm2/pim/pass/hexstring.mod
@@ -0,0 +1,16 @@
+MODULE hexstring ;
+
+CONST
+ HexDigits = "0123456789ABCDEF" ;
+
+TYPE
+ ArrayType = ARRAY [0..HIGH (HexDigits)] OF CHAR ;
+
+CONST
+ HexArray = ArrayType { HexDigits } ;
+
+VAR
+ four: CHAR ;
+BEGIN
+ four := HexArray[4]
+END hexstring.