mirror of
https://github.com/google/pebble.git
synced 2025-03-20 11:01:20 +00:00
23 lines
466 B
Protocol Buffer
23 lines
466 B
Protocol Buffer
|
// Test if including generated header file for this file + implicit include of
|
||
|
// multifile2.pb.h still compiles. Used with test_compiles.c.
|
||
|
syntax = "proto2";
|
||
|
|
||
|
import "multifile1.proto";
|
||
|
|
||
|
message Callback2Message {
|
||
|
required TestMessage tstmsg = 1;
|
||
|
required SubMessage submsg = 2;
|
||
|
}
|
||
|
|
||
|
message OneofMessage {
|
||
|
oneof msgs {
|
||
|
StaticMessage tstmsg = 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message Enums {
|
||
|
required SignedEnum senum = 1;
|
||
|
required UnsignedEnum uenum = 2;
|
||
|
}
|
||
|
|