aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug069/bug2.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug069/bug2.vhdl')
-rw-r--r--testsuite/gna/bug069/bug2.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug069/bug2.vhdl b/testsuite/gna/bug069/bug2.vhdl
new file mode 100644
index 000000000..1bb227089
--- /dev/null
+++ b/testsuite/gna/bug069/bug2.vhdl
@@ -0,0 +1,13 @@
+entity bug2 is
+end entity bug2;
+
+architecture x of bug2 is
+
+ type bit_position is (msb);
+ signal test : integer;
+
+begin
+
+ test <= msb;
+
+end architecture x;