Skip to content

Commit

Permalink
fix another test comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nishanths committed Nov 10, 2021
1 parent a3f18aa commit 4d34633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testdata/src/typealias/foo/foo.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type T1 = bar.T2
const (
A = bar.A // matches bar.A by value; can be listed in switch case instead of bar.A
B = bar.B // matches bar.B by value; can be listed in switch case instead of bar.B
C bar.T2 = "+" // matches bar.C by value; can be listed instead of foo.C in switch
C bar.T2 = "+" // matches bar.C by value; can be listed instead of bar.C in switch
F T1 = "|" // matches bar.F by value (type does not matter); can be listed in switch case instead of bar.F
H bar.T2 = "<" // matches bar.I by value (name does not matter); can be listed in switch case instead of bar.I

Expand Down

0 comments on commit 4d34633

Please sign in to comment.