Sha256: 27544cae720029de0e5206c78dbc0dfd36f422d818a58951ca749ddf826344ce

Contents?: true

Size: 331 Bytes

Versions: 3

Compression:

Stored size: 331 Bytes

Contents

union MyUnion switch (UnionKey type)
{
    case ONE:
        struct {
            int someInt;
        } one;

    case TWO:
        struct {
            int someInt;
            Foo foo;
        } two;

    case OFFER:
        void;
};

struct MyStruct
{
    union switch (int v)
    {
    case 0:
        void;
    }
    ext;
};

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xdrgen-0.1.1 spec/fixtures/parser/nesting.x
xdrgen-0.1.0 spec/fixtures/parser/nesting.x
xdrgen-0.0.1 spec/fixtures/parser/nesting.x