summaryrefslogtreecommitdiffstats
path: root/test cases/frameworks/5 protocol buffers/main.cpp
blob: f6566d52e6633fd5ece03f6f3a724b239ca948f8 (plain)
1
2
3
4
5
6
7
8
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;
}