summaryrefslogtreecommitdiffstats
path: root/lowercasing_test/src/grouping_test/hello-world/hello-world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lowercasing_test/src/grouping_test/hello-world/hello-world.cpp')
-rw-r--r--lowercasing_test/src/grouping_test/hello-world/hello-world.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/lowercasing_test/src/grouping_test/hello-world/hello-world.cpp b/lowercasing_test/src/grouping_test/hello-world/hello-world.cpp
deleted file mode 100644
index 42504323bbe..00000000000
--- a/lowercasing_test/src/grouping_test/hello-world/hello-world.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-#include <vespa/fastos/fastos.h>
-#include <grouping_test/hello-world-lib/hello-world.h>
-
-class App : public FastOS_Application
-{
-public:
- int Main();
-};
-
-int
-App::Main()
-{
- HelloWorld::print();
- fprintf(stdout, "C++/app/Hello World\n");
- return 0;
-}
-
-int
-main(int argc, char **argv)
-{
- App myapp;
- return myapp.Entry(argc, argv);
-}