1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 12:54:58 +00:00
serenity/Userland/Libraries/LibCpp/Tests/parser/struct.cpp

13 lines
125 B
C++

struct MyStruct
{
int x;
struct s* next;
};
int foo()
{
MyStruct s;
printf("%d\n", s.x);
return s.x;
}