Newer
Older
minerva / Userland / Libraries / LibCpp / Tests / parser / struct.cpp
@minerva minerva on 13 Jul 125 bytes Initial commit

struct MyStruct
{
    int x;
    struct s* next;
};

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