github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/reassign.go (about) 1 //golangcitest:args -Ereassign 2 package testdata 3 4 import ( 5 "io" 6 "net/http" 7 ) 8 9 func reassignTest() { 10 http.DefaultClient = nil 11 http.DefaultTransport = nil 12 io.EOF = nil // want `reassigning variable EOF in other package io` 13 }