14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			227 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //golangcitest:args -Ereassign
 | |
| package testdata
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| )
 | |
| 
 | |
| func reassignTest() {
 | |
| 	http.DefaultClient = nil
 | |
| 	http.DefaultTransport = nil
 | |
| 	io.EOF = nil // want `reassigning variable EOF in other package io`
 | |
| }
 | 
