mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-09 22:56:04 +00:00
15 lines
127 B
C++
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);
|
||
|
}
|