1
0
mirror of https://github.com/fzipp/gocyclo.git synced 2025-02-06 10:23:54 +00:00

testdata: use for loop with full ForClause to prevent gofmt from reformatting it

This commit is contained in:
Frederik Zipp 2022-06-04 21:42:27 +02:00
parent 0198fc9b4a
commit f2d376029e

2
testdata/loops.go vendored
View File

@ -22,6 +22,6 @@ func l4() {
}
for true {
}
for ;; {
for i := 0; i < 10; i++ {
}
}