1
0
mirror of https://github.com/mgechev/revive.git synced 2025-02-07 13:31:42 +02:00
revive/testdata/max_control_nesting_default.go

17 lines
189 B
Go

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