Skip to content

Instantly share code, notes, and snippets.

@samueleresca
Created November 18, 2022 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueleresca/92698cd5f4efc9252c8102a479c33b46 to your computer and use it in GitHub Desktop.
Save samueleresca/92698cd5f4efc9252c8102a479c33b46 to your computer and use it in GitHub Desktop.
syntax = "proto2";
package libfuzzer_example;
import "google/protobuf/any.proto";
message Msg {
optional float optional_float = 1;
optional uint64 optional_uint64 = 2;
optional string optional_string = 3;
optional google.protobuf.Any any = 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment