-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: repo-panama
-
Component/s: tools
-
generic
-
generic
Duplicate declarations are allowed in C header file. For example:
void func(int);
void func(int);
extern int i;
extern int i;
=> jextract generates illegal class with duplicate methods.
void func(int);
void func(int);
extern int i;
extern int i;
=> jextract generates illegal class with duplicate methods.