mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-07 00:30:59 +00:00
12 lines
94 B
C++
12 lines
94 B
C++
|
|
class A {
|
||
|
|
A(int z);
|
||
|
|
~A();
|
||
|
|
void foo();
|
||
|
|
|
||
|
|
private:
|
||
|
|
int x;
|
||
|
|
|
||
|
|
public:
|
||
|
|
int y;
|
||
|
|
};
|