Merge "Test for references to typedef'd enum."

am: 6a5daf8cac

Change-Id: I4f4edb7ad49105bd53c59d4a4428ad8573acbfa2
This commit is contained in:
Steven Moreland 2017-11-28 02:11:27 +00:00 committed by android-build-merger
commit 7b64abd011

View file

@ -26,7 +26,9 @@ interface IExpressionExt {
ENUM_BEST = android.hardware.tests.expression@1.0::IExpression.Constants:CONST_BAR,
};
typedef Color[((Constants:MAX_ARRAY_SIZE << 1) - (Constants:CONST_FOO + 1)*8) >> 1] SixteenColors;
typedef Constants AlsoConstants;
typedef Color[((Constants:MAX_ARRAY_SIZE << 1) - (AlsoConstants:CONST_FOO + 1)*8) >> 1] SixteenColors;
struct ArrayOfColors {
Color[(Constants:MAX_ARRAY_SIZE << 1) - (Constants:CONST_FOO + 1)*8] my32Colors; // 32
};