blob: 20ce9870dfefa02f17d983ff74d126a240fb20b0 [file] [log] [blame]
Austin Schuh87dc7bb2018-10-29 21:53:23 -07001#include "gflags/gflags.h"
Brian Silvermanfbe79b82015-09-12 15:10:54 -04002
3DEFINE_int32(test_flag, 0, "Test command-line flag");
4
5int main() {
6 return FLAGS_test_flag;
7}