blob: c0250ac8f40e250bc1cb8c229e473b436f2c03af [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Detect newly introduced gopls issues
2
3-- .commit --
4Initial commit
5
6-- p.go --
7package p
8
9func F() {
10 return
11 panic("unreachable")
12}
13
14-- .commit --
15Add file with gopls issues
16
17-- .run_test --
Josh Bleecher Snyderffecb1e2025-04-28 18:59:14 +000018# Errors
19
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000020Gopls check issues detected:
21
221. /PATH/TO/REPO/p.go:5:2-22: unreachable code
23
24IMPORTANT: Only fix new gopls check issues in parts of the code that you have already edited. Do not change existing code that was not part of your current edits.
25
26
27Please fix before proceeding.