aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Lehmann <Paebbels@gmail.com>2018-05-29 21:55:55 +0200
committerGitHub <noreply@github.com>2018-05-29 21:55:55 +0200
commit5b728dca30c6d85692731d62f40052037131e5f1 (patch)
tree7905395c832d3f075042c6115f1ae4bd981656df
parent6a9d095dbe85e725639e6dc3080be9cdb94db4ef (diff)
parent9e22dd8390e5cb7bc46135e9e14e11e95cfcc029 (diff)
downloadghdl-5b728dca30c6d85692731d62f40052037131e5f1.tar.gz
ghdl-5b728dca30c6d85692731d62f40052037131e5f1.tar.bz2
ghdl-5b728dca30c6d85692731d62f40052037131e5f1.zip
Merge pull request #587 from 1138-4EB/add-wait-ent
add wait statement to bug_report reproduction example
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 2acdd2cd3..eba6c98ad 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -33,6 +33,7 @@ architecture a of ent is
begin
process begin
report "Hello world" severity note;
+ wait;
end process;
end;