aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2333/empty.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue2333/empty.vhdl')
-rw-r--r--testsuite/gna/issue2333/empty.vhdl24
1 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/gna/issue2333/empty.vhdl b/testsuite/gna/issue2333/empty.vhdl
new file mode 100644
index 000000000..8a3b9911b
--- /dev/null
+++ b/testsuite/gna/issue2333/empty.vhdl
@@ -0,0 +1,24 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity abcdefg is
+end entity abcdefg;
+
+architecture arch of abcdefg is
+begin
+end architecture arch;
+
+-------------------------------------------
+
+
+library ieee;
+--use ieee.numeric_std.all; --using a package from IEEE (even a different one) "fixes" the crash
+
+library Bugtests;
+use Bugtests.abcdefg;
+entity abcdefg_tb is
+
+end entity;
+architecture rtl of abcdefg_tb is
+begin
+end architecture;