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

Commit e409df1e authored by Yifan Hong's avatar Yifan Hong Committed by android-build-merger
Browse files

Add test for referring to nested types. am: 61db8544 am: a30e27f6

am: c799177c

Change-Id: I16e6fa76a3c810df40e93a06ccac799f7c8207ad
parents fdff6ba3 c799177c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ interface IFoo {
    };

    struct Fumble {
        float x;
        Outer.Inner data;
    };

    typedef Fumble Gumble;
+10 −0
Original line number Diff line number Diff line
@@ -21,3 +21,13 @@ struct Abc {
    float y;
    handle z;
};

struct Outer {
    struct Inner {
        int32_t data;
    };
};

struct Unrelated {
    Outer.Inner great;
};