aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/completion/main.cpp
blob: b408720d2cdc60cd64a18b70c95f9257957f1904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Foo
{
public:
    int Bar(int x, int y)
    {
        return x + y;
    }
};

int main()
{
    Foo f;
    f.Bar(1, 2);
}