summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/5 protocol buffers/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test cases/frameworks/5 protocol buffers/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/frameworks/5 protocol buffers/main.cpp b/test cases/frameworks/5 protocol buffers/main.cpp
new file mode 100644
index 0000000..f6566d5
--- /dev/null
+++ b/test cases/frameworks/5 protocol buffers/main.cpp
@@ -0,0 +1,9 @@
+#include "defs.pb.h"
+
+int main(int argc, char **argv) {
+ GOOGLE_PROTOBUF_VERIFY_VERSION;
+ Dummy *d = new Dummy;
+ delete d;
+ google::protobuf::ShutdownProtobufLibrary();
+ return 0;
+}