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

Commit d424641a authored by Martin Geisler's avatar Martin Geisler Committed by Automerger Merge Worker
Browse files

Merge "pdl: Add structs to Rust canonical tests" am: df3aa4c4

parents 9959e9df df3aa4c4
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -12,6 +12,16 @@ enum Enum16 : 16 {
    B = 0xccdd,
}

struct SizedStruct {
    a: 8,
}

struct UnsizedStruct {
    _size_(array): 2,
    _reserved_: 6,
    array: 8[],
}

enum MaxDiscriminantEnum : 64 {
     Max = 0xffffffffffffffff,
}
+10 −0
Original line number Diff line number Diff line
@@ -12,6 +12,16 @@ enum Enum16 : 16 {
    B = 0xccdd,
}

struct SizedStruct {
    a: 8,
}

struct UnsizedStruct {
    _size_(array): 2,
    _reserved_: 6,
    array: 8[],
}

enum MaxDiscriminantEnum : 64 {
     Max = 0xffffffffffffffff,
}