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