diff options
| -rw-r--r-- | test/bruisertest/test.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/test/bruisertest/test.cpp b/test/bruisertest/test.cpp index 40bfb47..f3e32d1 100644 --- a/test/bruisertest/test.cpp +++ b/test/bruisertest/test.cpp @@ -1,4 +1,7 @@ +#include <fstream> +#include <iostream> +  namespace devi  {    class LOCO @@ -17,5 +20,10 @@ namespace devi  int main(int argc, const char **argv)  { +  std::ofstream myfile; +  myfile.open("./touch"); +  myfile << "line one.\n"; +  myfile.close(); +  return 0;  } | 
