Add test for referring to nested types.

am: 61db854465

Change-Id: Ie4a21561afd882184fe0d9aa1c2772b5849222f7
This commit is contained in:
Yifan Hong
2016-10-04 21:10:15 +00:00
committed by android-build-merger
2 changed files with 11 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ interface IFoo {
};
struct Fumble {
float x;
Outer.Inner data;
};
typedef Fumble Gumble;

View File

@@ -21,3 +21,13 @@ struct Abc {
float y;
handle z;
};
struct Outer {
struct Inner {
int32_t data;
};
};
struct Unrelated {
Outer.Inner great;
};