aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue235/test.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue235/test.vhdl')
-rw-r--r--testsuite/gna/issue235/test.vhdl18
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/issue235/test.vhdl b/testsuite/gna/issue235/test.vhdl
new file mode 100644
index 000000000..812282766
--- /dev/null
+++ b/testsuite/gna/issue235/test.vhdl
@@ -0,0 +1,18 @@
+PACKAGE test_pkg IS
+
+ TYPE string_array_t IS ARRAY (natural RANGE <>) OF string;
+
+END test_pkg;
+
+ENTITY test IS
+END ENTITY test;
+
+LIBRARY work;
+USE work.test_pkg.string_array_t;
+
+ARCHITECTURE rtl OF test IS
+
+
+BEGIN
+
+END ARCHITECTURE rtl;