Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b035e3a2 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "tests: IBaz, nasty nesting struct"

parents 7daf2659 a20d00ba
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -36,6 +36,17 @@ interface IBaz extends IBase {
    typedef SomeOtherEnum thisIsAnAlias;
    typedef IBaz anIBazByAnyOtherName;

    struct NastyNester {
        struct NestersNasty {
            struct NestersNastyNester {
                IBaz baz;
                vec<NestersNasty> nasties;
            };
        };

        IBaz baz;
    };

    enum SomeEnum : SomeOtherEnum {
        quux = 33,
        goober = 192,