diff --git a/.github/ISSUE_TEMPLATE/improve-error.md b/.github/ISSUE_TEMPLATE/improve-error.md new file mode 100644 index 000000000000..918196e1ec53 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/improve-error.md @@ -0,0 +1,55 @@ +--- +name: "\U0001F615 Error/Warning message report" +about: Report an error/warning message that was confusing/unhelpful +title: '' +labels: itype:enhancement, area:reporting, better-errors, stat:needs triage +assignees: '' + +--- + +## Compiler version + +If you're not sure what version you're using, run `print scalaVersion` from sbt +(if you're running scalac manually, use `scalac -version` instead). + +## Minimized example + + + +```Scala +printl("hello, world") +``` + +## Output Error/Warning message + + + +```scala +-- [E006] Not Found Error: ---------------- +1 |printl("hello, world") + |^^^^^^ + |Not found: printl +1 error found +``` + +## Why this Error/Warning was not helpful + + + +The message was unhelpful because... + +## Suggested improvement + + + +It could be made more helpful by...