-
Bug
-
Resolution: Fixed
-
P3
-
repo-panama
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.