mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
Merge "Print full name test" am: b5aef5a54d am: 617656f549
am: 99bd58cf4b
Change-Id: Id143f51f50329025c1e3f11a30a38b701fe4f266
This commit is contained in:
@@ -126,6 +126,24 @@ interface IFoo {
|
||||
typedef multidimArrayOne[8][9][10] multidimArrayTwo;
|
||||
typedef multidimArrayTwo[2][3][4] multidimArrayThree;
|
||||
|
||||
struct InnerTestStruct {};
|
||||
typedef InnerTestStruct InnerTestStructTypedef;
|
||||
struct S1 {
|
||||
struct InnerTestStruct {};
|
||||
InnerTestStructTypedef foo;
|
||||
};
|
||||
|
||||
enum InnerTestEnum : int32_t {
|
||||
VALUE = 0
|
||||
};
|
||||
typedef InnerTestEnum InnerTestEnumTypedef;
|
||||
struct S2 {
|
||||
enum InnerTestEnum : int32_t {
|
||||
VALUE = 1
|
||||
};
|
||||
InnerTestEnumTypedef foo;
|
||||
};
|
||||
|
||||
doThis(float param);
|
||||
doThatAndReturnSomething(int64_t param) generates (int32_t result);
|
||||
doQuiteABit(int32_t a, int64_t b, float c, double d) generates (double something);
|
||||
|
||||
Reference in New Issue
Block a user