aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp')
-rw-r--r--meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp b/meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp
new file mode 100644
index 000000000..83af4b256
--- /dev/null
+++ b/meson/test cases/frameworks/5 protocol buffers/withpath/pathprog.cpp
@@ -0,0 +1,16 @@
+#include"com/mesonbuild/simple.pb.h"
+#include"com/mesonbuild/subsite/complex.pb.h"
+
+#include<memory>
+
+int main(int argc, char **argv) {
+ GOOGLE_PROTOBUF_VERIFY_VERSION;
+ {
+ subdirectorial::SimpleMessage *s = new subdirectorial::SimpleMessage();
+ s->set_the_integer(3);
+ subdirectorial::ComplexMessage c;
+ c.set_allocated_sm(s);
+ }
+ google::protobuf::ShutdownProtobufLibrary();
+ return 0;
+}