aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket47/ent.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-05-11 21:04:03 +0200
committerTristan Gingold <tgingold@free.fr>2015-05-11 21:04:03 +0200
commit262976db6c8f846125dbaf2dca75eaeb32866b00 (patch)
tree46de5ffec7cc71e57f964d603e7c76a63f4341ab /testsuite/gna/ticket47/ent.vhdl
parentf94b64e892c4c5b7cc9b3661a0de0a358e79093c (diff)
downloadghdl-262976db6c8f846125dbaf2dca75eaeb32866b00.tar.gz
ghdl-262976db6c8f846125dbaf2dca75eaeb32866b00.tar.bz2
ghdl-262976db6c8f846125dbaf2dca75eaeb32866b00.zip
Test for ticket 47.
Diffstat (limited to 'testsuite/gna/ticket47/ent.vhdl')
-rw-r--r--testsuite/gna/ticket47/ent.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/ticket47/ent.vhdl b/testsuite/gna/ticket47/ent.vhdl
new file mode 100644
index 000000000..9a17e5c8a
--- /dev/null
+++ b/testsuite/gna/ticket47/ent.vhdl
@@ -0,0 +1,13 @@
+entity ent is
+ generic (str : string);
+end entity;
+
+architecture a of ent is
+begin
+ main : process
+ begin
+ report str;
+ wait;
+ end process;
+end architecture;
+