code_with_warning.cc File Reference
#include <iostream>

Functions

int main (int argc, char **argv)
 Driver code that creates a warning when compiled. Used to test self tests! More...
 

Function Documentation

◆ main()

int main ( int argc  ,
char **  argv 
)

Driver code that creates a warning when compiled. Used to test self tests!

32 {
33 
34  unsigned deliberately_unused_variable=1;
35 
36  std::cout << "This worked" << std::endl;
37 
38  return 0;
39 
40 } //end of main