diff options
Diffstat (limited to 'Tests/CompileCommandOutput/compile_command_output.cxx')
-rw-r--r-- | Tests/CompileCommandOutput/compile_command_output.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/CompileCommandOutput/compile_command_output.cxx b/Tests/CompileCommandOutput/compile_command_output.cxx new file mode 100644 index 0000000..145a064 --- /dev/null +++ b/Tests/CompileCommandOutput/compile_command_output.cxx @@ -0,0 +1,9 @@ +#include "file_with_underscores.h" +#include "relative.h" + +int main (int argc, char** argv) +{ + file_with_underscores(); + relative(); + return 0; +} |