aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue419/bug.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue419/bug.vhdl')
-rw-r--r--testsuite/gna/issue419/bug.vhdl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue419/bug.vhdl b/testsuite/gna/issue419/bug.vhdl
new file mode 100644
index 000000000..311db4cac
--- /dev/null
+++ b/testsuite/gna/issue419/bug.vhdl
@@ -0,0 +1,15 @@
+package pkg is
+ procedure other_proc(value : boolean);
+ procedure other_proc(value : integer);
+
+ procedure proc(other_proc : integer);
+ procedure proc;
+
+end package;
+
+package body pkg is
+ procedure proc2 is
+ begin
+ proc(other_proc => 0);
+ end;
+end package body;