We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea9658 commit bca01aeCopy full SHA for bca01ae
go/ql/integration-tests/package-exclusion-fix/src/configmodule/config/config.go
@@ -1,9 +1,9 @@
1
package config
2
3
type Settings struct {
4
- Value string
+ Value string
5
}
6
7
func Value() string {
8
- return Settings{Value: "ok"}.Value
+ return Settings{Value: "ok"}.Value
9
go/ql/integration-tests/package-exclusion-fix/src/mainmodule/app/jobs/worker/worker.go
@@ -3,5 +3,5 @@ package worker
import "example.com/configmodule/config"
func Use() string {
- return config.Value()
+ return config.Value()
0 commit comments