aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/procinter.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/procinter.vhdl')
-rw-r--r--testsuite/gna/bug0100/procinter.vhdl10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/procinter.vhdl b/testsuite/gna/bug0100/procinter.vhdl
new file mode 100644
index 000000000..2090af217
--- /dev/null
+++ b/testsuite/gna/bug0100/procinter.vhdl
@@ -0,0 +1,10 @@
+entity procinter is
+end;
+
+architecture arch of procinter is
+ procedure proc (procedure proc2 (v : natural)) is
+ begin
+ null;
+ end proc;
+begin
+end arch;