1
0
mirror of https://github.com/mgechev/revive.git synced 2025-05-17 22:02:45 +02:00
revive/testdata/max_control_nesting_default.go

17 lines
189 B
Go
Raw Permalink Normal View History

package fixtures
func mcn() {
if true {
if true {
if true {
if true {
if true {
if true { // MATCH /control flow nesting exceeds 5/
}
}
}
}
}
}
}