aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
author1138-4EB <1138-4EB@users.noreply.github.com>2018-05-29 21:05:00 +0200
committer1138-4EB <1138-4EB@users.noreply.github.com>2018-05-29 21:28:30 +0200
commit9e22dd8390e5cb7bc46135e9e14e11e95cfcc029 (patch)
tree7905395c832d3f075042c6115f1ae4bd981656df /.github
parent6a9d095dbe85e725639e6dc3080be9cdb94db4ef (diff)
downloadghdl-9e22dd8390e5cb7bc46135e9e14e11e95cfcc029.tar.gz
ghdl-9e22dd8390e5cb7bc46135e9e14e11e95cfcc029.tar.bz2
ghdl-9e22dd8390e5cb7bc46135e9e14e11e95cfcc029.zip
add wait statement to bug_report reproduction example
Diffstat (limited to '.github')
-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;