1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 23:14:59 +00:00
serenity/Userland/Libraries/LibCpp/Tests/parser/class.cpp

11 lines
94 B
C++

class A {
A(int z);
~A();
void foo();
private:
int x;
public:
int y;
};