Add test for referring to nested types. am: 61db854465

am: a30e27f697

Change-Id: I47800ef8ff8d6aa53580f09cfa9417c41b6f3098
This commit is contained in:
Yifan Hong
2016-10-04 21:12:13 +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;
};