diff options
Diffstat (limited to 'testsuite/gna/issue1419/repro2.vhdl')
-rw-r--r-- | testsuite/gna/issue1419/repro2.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue1419/repro2.vhdl b/testsuite/gna/issue1419/repro2.vhdl new file mode 100644 index 000000000..a80baa1d6 --- /dev/null +++ b/testsuite/gna/issue1419/repro2.vhdl @@ -0,0 +1,12 @@ +entity repro2 is +end; + +architecture behav of repro2 is + type t_record is record + str : string; + num : positive; + end record; + + constant k : t_record := ("abc", 1); +begin +end; |