aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket65/bug1.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/ticket65/bug1.vhdl')
-rw-r--r--testsuite/gna/ticket65/bug1.vhdl17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuite/gna/ticket65/bug1.vhdl b/testsuite/gna/ticket65/bug1.vhdl
new file mode 100644
index 000000000..1af4cd191
--- /dev/null
+++ b/testsuite/gna/ticket65/bug1.vhdl
@@ -0,0 +1,17 @@
+entity ent1 is
+end entity;
+
+architecture a of ent1 is
+begin
+ main : process is
+ type enum_t is (value1, value2);
+ variable var : enum_t;
+ begin
+ var := enum_t'rightof(value1); -- Works
+ var := enum_t'leftof(value1); -- Error
+ var := enum_t'leftof(value2); -- Works
+ var := enum_t'rightof(var); -- cannot handle IIR_KIND_RIGHTOF_ATTRIBUTE
+ var := enum_t'leftof(var); -- cannot handle IIR_KIND_LEFTOF_ATTRIBUTE
+ wait;
+ end process;
+end architecture;