Merge pull request #4677 from mwichmann/issue/debug-memoizer
[scons.git] / test / ninja / ninja-fixture / test2.cpp
blob504956e4ae2b3a26e3f9a2333269fb62282d3f62
1 // SPDX-License-Identifier: MIT
2 //
3 // Copyright The SCons Foundation
5 #include "test2.hpp"
7 int
8 main(int argc, char *argv[])
10 Foo* test = new Foo();
11 test->print_function();
12 test->print_function2();
13 return 0;
16 int Foo::print_function()
18 std::cout << "print_function";
19 return 0;