Skip to content

Commit

Permalink
Update test data
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Jun 17, 2024
1 parent 5d4d6a7 commit 131a777
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testdata/testdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const (
func unused() {
regexp.Compile(".+")

nonNilVar := 14

if errors.New("abcd") == errors.New("abcd") {
// Test SA4000
}
Expand All @@ -26,4 +28,8 @@ func unused() {
fmt.Println(x)
}
}

if nonNilVar != nil {
fmt.Println(nonNilVar)
}
}

0 comments on commit 131a777

Please sign in to comment.