Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9b2f0f19 authored by Timur Iskhakov's avatar Timur Iskhakov Committed by android-build-merger
Browse files

Merge "Print full name test" am: b5aef5a5 am: 617656f5 am: 99bd58cf

am: 5cbe90c5

Change-Id: I740e1b5d979f844270d65c6d3fffad1af5735961
parents a7ee6788 5cbe90c5
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -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);