aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/appWithoutSources/b.cpp
blob: 76c93685df661a4bb4f90b13a441e3ee670e77ab (plain)
1
2
3
4
5
6
7
8
9
10
#include <cstdio>

int foo();  // defined in a.cpp

int main()
{
    printf("The answer is %d.\n", foo());
    return 0;
}