diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-03-12 18:52:27 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-03-14 07:14:44 +0100 |
commit | 4072f59cac54cf35d83d7bf8a1ca26eeeb25831a (patch) | |
tree | 10f3353d00c2126917b310d9b61815625f9c4328 /testsuite/gna/issue777/tb.vhdl | |
parent | ef5e4519b086225f4b2ae172c5b8b7d23f0ab796 (diff) | |
download | ghdl-4072f59cac54cf35d83d7bf8a1ca26eeeb25831a.tar.gz ghdl-4072f59cac54cf35d83d7bf8a1ca26eeeb25831a.tar.bz2 ghdl-4072f59cac54cf35d83d7bf8a1ca26eeeb25831a.zip |
Add testcase for #777
Diffstat (limited to 'testsuite/gna/issue777/tb.vhdl')
-rw-r--r-- | testsuite/gna/issue777/tb.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue777/tb.vhdl b/testsuite/gna/issue777/tb.vhdl new file mode 100644 index 000000000..6a4b10cb4 --- /dev/null +++ b/testsuite/gna/issue777/tb.vhdl @@ -0,0 +1,12 @@ +entity tb is + +end entity tb; + +architecture functional of tb is + +begin -- architecture functional + + dut : entity work.a + port map (i => true); + +end architecture functional; |