llvm-project/lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp

15 lines
127 B
C++

class Foo
{
public:
int Bar(int x, int y)
{
return x + y;
}
};
int main()
{
Foo f;
f.Bar(1, 2);
}