diff options
Diffstat (limited to 'testsuite/gna/issue238/var1.vhdl')
-rw-r--r-- | testsuite/gna/issue238/var1.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/issue238/var1.vhdl b/testsuite/gna/issue238/var1.vhdl new file mode 100644 index 000000000..b77557ca8 --- /dev/null +++ b/testsuite/gna/issue238/var1.vhdl @@ -0,0 +1,13 @@ +entity var1 is +end; + +use work.pkg.all; + +architecture behav of var1 is +begin + process + variable v : rec_4; + begin + wait; + end process; +end behav; |