Source file src/internal/coverage/cfile/testdata/issue59563/repro_test.go
1 // Copyright 2023 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package repro 6 7 import "testing" 8 9 func TestSomething(t *testing.T) { 10 small() 11 for i := 0; i < 1001; i++ { 12 large(i) 13 } 14 } 15