// +build gofuzz package qcode // FuzzerEntrypoint for Fuzzbuzz func Fuzz(data []byte) int { GetQType(string(data)) qcompile, _ := NewCompiler(Config{}) _, err := qcompile.Compile(data, "user") if err != nil { return 0 } return 1 }