10 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//golangcitest:args -Egofmt
 | 
						|
package testdata
 | 
						|
 | 
						|
import "fmt"
 | 
						|
 | 
						|
func GofmtNotSimplified() {
 | 
						|
	var x []string
 | 
						|
	fmt.Print(x[1:len(x)]) // want "File is not `gofmt`-ed with `-s`"
 | 
						|
}
 |