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

Commit f570a83a authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "tests: IBaz, nasty nesting struct" am: b035e3a2

am: 4f6a4094

Change-Id: I5a156356ff2914a1a9143284e8f0135d22c69898
parents a77467d7 4f6a4094
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,