From 98fa5f28b2c97ce321b13660d4db969a0072f606 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Tue, 20 Jan 2015 15:22:46 +0100 Subject: Add testcase bug08 (ambiguous notation for parenthesis name). --- testsuite/gna/bug08/paren6.vhdl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 testsuite/gna/bug08/paren6.vhdl (limited to 'testsuite/gna/bug08/paren6.vhdl') diff --git a/testsuite/gna/bug08/paren6.vhdl b/testsuite/gna/bug08/paren6.vhdl new file mode 100644 index 0000000..01b3a55 --- /dev/null +++ b/testsuite/gna/bug08/paren6.vhdl @@ -0,0 +1,15 @@ +entity paren6 is +end paren6; + +architecture behav of paren6 +is +begin + process + type string_acc is access string; + variable a : string_acc := new string'("hello"); + constant b : natural := 3; + begin + assert a(b) = 'l'; + wait; + end process; +end behav; -- cgit