mirror of
https://github.com/mgechev/revive.git
synced 2025-05-15 21:56:38 +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/
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|