1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 06:38:10 +00:00

LibCpp: Add test for parsing class definitions

This commit is contained in:
Itamar 2021-06-08 23:04:19 +03:00 committed by Andreas Kling
parent 7de6c1489b
commit ee9fe288b2
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,11 @@
class A {
A(int z);
~A();
void foo();
private:
int x;
public:
int y;
};