18 lines
		
	
	
		
			340 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			340 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //args: -Egoconst
 | |
| //config: linters-settings.goconst.ignore-calls=false
 | |
| package testdata
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| const FooBar = "foobar"
 | |
| 
 | |
| func Baz() {
 | |
| 	a := "foobar" // ERROR "string `foobar` has 4 occurrences, but such constant `FooBar` already exists"
 | |
| 	fmt.Print(a)
 | |
| 	b := "foobar"
 | |
| 	fmt.Print(b)
 | |
| 	c := "foobar"
 | |
| 	fmt.Print(c)
 | |
| 	fmt.Print("foobar")
 | |
| }
 | 
