]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/completion/main.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / completion / main.cpp
1 class Foo
2 {
3 public:
4     int Bar(int x, int y)
5     {
6         return x + y;
7     }
8 };
9
10 int main()
11 {
12     Foo f;
13     f.Bar(1, 2);
14 }