Skip to content

Commit

Permalink
gopls/internal/test/marker: regenerate golden data
Browse files Browse the repository at this point in the history
CL 554717 was merged before rebasing to pick up the change to stubbed
method receivers added in CL 544916, resulting in test failures.

Change-Id: Ia3a82605a8725ce1f88465eb4cd6ae04e8455fa9
Reviewed-on: https://go-review.googlesource.com/c/tools/+/555555
Auto-Submit: Robert Findley <rfindley@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Russ Cox <rsc@golang.org>
  • Loading branch information
findleyr authored and gopherbot committed Jan 12, 2024
1 parent f572b7e commit 6a0605d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var _ a.I = &B{} //@ suggestedfix("&B{}", re"does not implement", out)
-- @out/a/v2/b/b.go --
@@ -7 +7,5 @@
+// F implements a.I.
+func (*B) F() a.T {
+func (b *B) F() a.T {
+ panic("unimplemented")
+}
+
Expand Down Expand Up @@ -70,7 +70,7 @@ type I = a.I
+
@@ -7 +9,5 @@
+// F implements a.I.
+func (*B) F() a.T {
+func (b *B) F() a.T {
+ panic("unimplemented")
+}
+
Expand Down

0 comments on commit 6a0605d

Please sign in to comment.