• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// +build gofuzz
2
3package exampleoc
4
5func Fuzz(data []byte) int {
6	nd := &Device{}
7	err := Unmarshal([]byte(data), nd)
8	if err != nil {
9		return 0
10	}
11	return 1
12}
13