aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp
blob: 16c8ce7d94887f5724395ca0b65679ef8e156118 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "decls.h"

void
struct1::f()
{
}

int main()
{
    struct1::f();
    struct2::f();
    return 0;
}