mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
Build the code sample for string builder only fron Go 1.10 onwards
This commit is contained in:
parent
ae82798b9c
commit
2695567487
1 changed files with 6 additions and 1 deletions
|
@ -165,6 +165,8 @@ func main() {
|
|||
e := test()
|
||||
fmt.Println(e)
|
||||
}`}, 0}, {[]string{`
|
||||
// +build go1.10
|
||||
|
||||
package main
|
||||
import "strings"
|
||||
func main() {
|
||||
|
@ -173,7 +175,10 @@ func main() {
|
|||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}`}, 0}}
|
||||
}`, `
|
||||
package main
|
||||
func dummy(){}
|
||||
`}, 0}}
|
||||
|
||||
// SampleCodeG105 - bignum overflow
|
||||
SampleCodeG105 = []CodeSample{{[]string{`
|
||||
|
|
Loading…
Reference in a new issue