| Josh Bleecher Snyder | 833a0f8 | 2025-04-24 18:39:36 +0000 | [diff] [blame] | 1 | Detect newly introduced gopls issues |
| 2 | |
| 3 | -- .commit -- |
| 4 | Initial commit |
| 5 | |
| 6 | -- p.go -- |
| 7 | package p |
| 8 | |
| 9 | func F() { |
| 10 | return |
| 11 | panic("unreachable") |
| 12 | } |
| 13 | |
| 14 | -- .commit -- |
| 15 | Add file with gopls issues |
| 16 | |
| 17 | -- .run_test -- |
| Josh Bleecher Snyder | ffecb1e | 2025-04-28 18:59:14 +0000 | [diff] [blame] | 18 | # Errors |
| 19 | |
| Josh Bleecher Snyder | 833a0f8 | 2025-04-24 18:39:36 +0000 | [diff] [blame] | 20 | Gopls check issues detected: |
| 21 | |
| 22 | 1. /PATH/TO/REPO/p.go:5:2-22: unreachable code |
| 23 | |
| 24 | IMPORTANT: 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 | |
| 27 | Please fix before proceeding. |