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

Commit 4ac8e544 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

am: f570a83a

Change-Id: I950d564d95f4a72ecee3f04daa061dadf735dd23
parents e33b74a9 f570a83a
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,