summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug08/paren10.vhdl
diff options
context:
space:
mode:
authorTristan Gingold2015-01-20 15:22:46 +0100
committerTristan Gingold2015-01-20 15:22:46 +0100
commit98fa5f28b2c97ce321b13660d4db969a0072f606 (patch)
tree4a27cbda417ea4f0cb8ede5cb812239f15c9e994 /testsuite/gna/bug08/paren10.vhdl
parent057fe02c3e99bee64cea06c057afc2d50732baad (diff)
downloadghdl-98fa5f28b2c97ce321b13660d4db969a0072f606.tar.gz
ghdl-98fa5f28b2c97ce321b13660d4db969a0072f606.tar.bz2
ghdl-98fa5f28b2c97ce321b13660d4db969a0072f606.zip
Add testcase bug08 (ambiguous notation for parenthesis name).
Diffstat (limited to 'testsuite/gna/bug08/paren10.vhdl')
-rw-r--r--testsuite/gna/bug08/paren10.vhdl18
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/bug08/paren10.vhdl b/testsuite/gna/bug08/paren10.vhdl
new file mode 100644
index 0000000..f3ea7f4
--- /dev/null
+++ b/testsuite/gna/bug08/paren10.vhdl
@@ -0,0 +1,18 @@
+entity paren10 is
+end paren10;
+
+architecture behav of paren10
+is
+begin
+ process
+ type string_acc is access string;
+ function a return string_acc is
+ begin
+ return new string'("hello");
+ end a;
+ constant b : natural := 2;
+ begin
+ assert a(b) = 'e';
+ wait;
+ end process;
+end behav;