Files
codeql/go/ql/test/experimental/CWE-840/util.go
2022-05-20 10:07:19 -07:00

10 lines
111 B
Go

package main
type Config struct{}
func (_ Config) get(s string) string {
return ""
}
var config = Config{}