diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-28 20:10:52 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-28 20:10:52 +0100 |
commit | 0379cdbe8f29230c20e9ccd3124da75469eaf38e (patch) | |
tree | b0839be10cdbf65285a05ca09bd773941e28d033 | |
parent | 7cbd526468940a0146c7e89a1393f656d1de7c71 (diff) | |
download | ghdl-0379cdbe8f29230c20e9ccd3124da75469eaf38e.tar.gz ghdl-0379cdbe8f29230c20e9ccd3124da75469eaf38e.tar.bz2 ghdl-0379cdbe8f29230c20e9ccd3124da75469eaf38e.zip |
testsuite/gna: adjust reproducer of #610
-rw-r--r-- | testsuite/gna/issue610/repro2.vhdl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/gna/issue610/repro2.vhdl b/testsuite/gna/issue610/repro2.vhdl index 1473eeb76..a36d5de2d 100644 --- a/testsuite/gna/issue610/repro2.vhdl +++ b/testsuite/gna/issue610/repro2.vhdl @@ -5,7 +5,7 @@ end repro2; architecture behav of repro2 is begin process - variable v : string (0 to l); + variable v : string (1 to l); alias a : string is v; begin v := (others => ' '); |