fuzzing-helper/main.go
2024-04-11 16:38:58 +03:00

18 lines
181 B
Go

package main
type Struct1 struct {
Field1 int
Field2 int8
Field3 int16
Field4 int32
Field5 int64
}
type Struct2 struct {
Field1 *Struct1
Field2 Struct1
}
func main() {
}