aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/qual.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/qual.vhdl')
-rw-r--r--testsuite/gna/bug0100/qual.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/qual.vhdl b/testsuite/gna/bug0100/qual.vhdl
new file mode 100644
index 000000000..f7c0ba0b3
--- /dev/null
+++ b/testsuite/gna/bug0100/qual.vhdl
@@ -0,0 +1,11 @@
+entity qual is
+end;
+
+architecture behav of qual is
+begin
+ process
+ variable cnt : natural range 0 to 15;
+ begin
+ cnt := cnt'last'(others => '1');
+ end process;
+end behav;