mirror of
https://github.com/mgechev/revive.git
synced 2025-02-07 13:31:42 +02:00
17 lines
189 B
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/
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|