From a300398fec606daeb1f8d98da16254d7c224c170 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Mon, 26 Jun 2017 01:49:19 +0430 Subject: updated --- test/bruisertest/test.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) 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 +#include + 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; } -- cgit v1.2.3