blob: 150e330f3428184ed15c16f1cbe840be5f8585a3 [file] [log] [blame]
Brian Silvermanfbe79b82015-09-12 15:10:54 -04001#include "third_party/gflags/include/gflags/gflags.h"
2
3DEFINE_int32(test_flag, 0, "Test command-line flag");
4
5int main() {
6 return FLAGS_test_flag;
7}