1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/unchecked-type-assertion-accept-ignored.go
2024-09-14 21:38:06 +02:00

13 lines
317 B
Go

package fixtures
var foo any = "foo"
func handleIgnoredIsOKByConfig() {
// No lint here because `acceptIgnoredAssertionResult` is set to `true`
r, _ := foo.(int)
}
func handleSkippedStillFails() {
r := foo.(int) // MATCH /type cast result is unchecked in foo.(int) - type assertion will panic if not matched/
}