aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/issues/issue56505.go
blob: 8c641bfb852a4487f564f3ec977e99ea1f48755c (plain)
1
2
3
4
5
6
7
8
package issues

// Test for golang/go#56505: completion on variables of type *error should not
// panic.
func _() {
	var e *error
	e.x //@complete(" //")
}