diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/build/protobuf.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/build/protobuf.cc b/test/build/protobuf.cc new file mode 100644 index 0000000000..59ead111a6 --- /dev/null +++ b/test/build/protobuf.cc @@ -0,0 +1,10 @@ +#include <google/protobuf/descriptor.h> +#include <google/protobuf/descriptor.pb.h> + +bool protobuf_test(const google::protobuf::MethodDescriptor *method) { + return method->client_streaming() || method->server_streaming(); +} + +int main() { + return 0; +} |