summaryrefslogtreecommitdiffstats
path: root/test/ninja/ninja-fixture/test2.cpp
blob: 69b54c97f7693596de305cb4de98abf4682d3299 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "test2.hpp"

int
main(int argc, char *argv[])
{
    Foo* test = new Foo();
    test->print_function();
    test->print_function2();
    return 0;
}

int Foo::print_function()
{
    std::cout << "print_function";
    return 0;
}