Add test for referring to nested types. am: 61db854465
am: a30e27f697
am: c799177c3e
Change-Id: I16e6fa76a3c810df40e93a06ccac799f7c8207ad
This commit is contained in:
commit
e409df1e55
2 changed files with 11 additions and 1 deletions
|
@ -31,7 +31,7 @@ interface IFoo {
|
|||
};
|
||||
|
||||
struct Fumble {
|
||||
float x;
|
||||
Outer.Inner data;
|
||||
};
|
||||
|
||||
typedef Fumble Gumble;
|
||||
|
|
|
@ -21,3 +21,13 @@ struct Abc {
|
|||
float y;
|
||||
handle z;
|
||||
};
|
||||
|
||||
struct Outer {
|
||||
struct Inner {
|
||||
int32_t data;
|
||||
};
|
||||
};
|
||||
|
||||
struct Unrelated {
|
||||
Outer.Inner great;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue