aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/build/protobuf.cc
blob: 59ead111a66bbea71aae85b1b6cc0d395a1bdf5a (plain)
1
2
3
4
5
6
7
8
9
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;
}