aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1726/orig.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1726/orig.vhdl')
-rw-r--r--testsuite/gna/issue1726/orig.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/issue1726/orig.vhdl b/testsuite/gna/issue1726/orig.vhdl
new file mode 100644
index 000000000..0ddc2b4cf
--- /dev/null
+++ b/testsuite/gna/issue1726/orig.vhdl
@@ -0,0 +1,14 @@
+package my_gpkg is
+ generic (
+ type data_t;
+ c_default : data_t);
+
+ constant my_constant : data_t := c_default;
+
+end package my_gpkg;
+
+use std.standard.all;
+package my_pkg_int is new work.my_gpkg
+ generic map (
+ data_t => integer,
+ c_default => 5);