aboutsummaryrefslogtreecommitdiff
path: root/test/prove_invert_loop_with_unused_iterators.go
blob: c66f20b6e93cbd54fd4019106d1779fbc000fc5a (plain)
1
2
3
4
5
6
7
8
9
10
11
// errorcheck -0 -d=ssa/prove/debug=1

//go:build amd64

package main

func invert(b func(), n int) {
	for i := 0; i < n; i++ { // ERROR "(Inverted loop iteration|Induction variable: limits \[0,\?\), increment 1)"
		b()
	}
}