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

Commit 34e70f27 authored by Timur Iskhakov's avatar Timur Iskhakov Committed by android-build-merger
Browse files

Check array dimenstion order am: a3b0f1f4 am: 57aa0f1b am: 96df229f

am: f1a2a4d9

Change-Id: I7ef2f019e291903863b14f48b2c2a69ee3b7307d
parents ef51f5e1 f1a2a4d9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -122,6 +122,10 @@ interface IFoo {
        bitfield<BitField> bf;
    };

    typedef int32_t[5][6][7] multidimArrayOne;
    typedef multidimArrayOne[8][9][10] multidimArrayTwo;
    typedef multidimArrayTwo[2][3][4] multidimArrayThree;

    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);