-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: repo-panama
-
Component/s: tools
Jextract fails on the following example:
```
struct Foo {
unsigned int x: 1;
int :7;
unsigned int y: 8;
int :16;
int z;
};
```
The current code tries to look up the second field, but because it has no name this throws an illegal field name error.
```
struct Foo {
unsigned int x: 1;
int :7;
unsigned int y: 8;
int :16;
int z;
};
```
The current code tries to look up the second field, but because it has no name this throws an illegal field name error.