aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2103/repro5.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue2103/repro5.vhdl')
-rw-r--r--testsuite/gna/issue2103/repro5.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/issue2103/repro5.vhdl b/testsuite/gna/issue2103/repro5.vhdl
new file mode 100644
index 000000000..9eca4a391
--- /dev/null
+++ b/testsuite/gna/issue2103/repro5.vhdl
@@ -0,0 +1,13 @@
+package repro4 is
+ alias n1 is natural;
+ alias n2 is natural;
+
+ function f (arg : bit; length : n1) return bit;
+end;
+
+package body repro4 is
+ function f (arg : bit; length : n2) return bit is
+ begin
+ return arg;
+ end;
+end;