aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/emptyquote2.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/emptyquote2.vhdl')
-rw-r--r--testsuite/gna/bug0100/emptyquote2.vhdl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/emptyquote2.vhdl b/testsuite/gna/bug0100/emptyquote2.vhdl
new file mode 100644
index 000000000..a02166976
--- /dev/null
+++ b/testsuite/gna/bug0100/emptyquote2.vhdl
@@ -0,0 +1,15 @@
+entity emptyquote is
+end;
+
+architecture behav of emptyquote is
+ procedure proc is
+ begin
+ null;
+ end proc;
+begin
+ process
+ begin
+ proc' '
+ null;
+ end process;
+end;