aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/staticLibDeps/d.cpp
blob: a7a2b9f8555cd2cdbb7b524107e3ef8271afd4d3 (plain)
1
2
3
4
5
6
7
8
9
void b();
void c();

void d()
{
    b();
    c();
}