diff options
Diffstat (limited to 'testsuite/gna/issue99/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue99/repro.vhdl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/gna/issue99/repro.vhdl b/testsuite/gna/issue99/repro.vhdl new file mode 100644 index 000000000..ea8d3e891 --- /dev/null +++ b/testsuite/gna/issue99/repro.vhdl @@ -0,0 +1,6 @@ +package pkg is + generic ( gen: natural ); + constant test: natural:=gen; +end package; + +package mygpkg is new work.pkg generic map ( gen => 17 ); |