diff options
Diffstat (limited to 'testsuite/gna/issue1667/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue1667/repro.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/issue1667/repro.vhdl b/testsuite/gna/issue1667/repro.vhdl new file mode 100644 index 000000000..deb17a850 --- /dev/null +++ b/testsuite/gna/issue1667/repro.vhdl @@ -0,0 +1,14 @@ +entity repro is +end; + +architecture behav of repro is + type string_vector is array (natural range <>) of string; + + type tokenized_line is record + op: string; + params: string_vector; + end record; + + constant k : tokenized_line := ("", ("", "")); +begin +end; |