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