Duplicated member variable
Open
- Dominant language
- Java
- Stars
- 6k
- Forks
- 999
- Avg merge
- 19h 20m
- Merged PRs (30d)
- 14
Description
imagine we have a Java class:
```
public class Foo {
int mBar;
}
```
and we have another class inherited from Foo:
```
public class SubFoo extends Foo {
int mBar;
}
```
Java compiles without any problem, however after j2objc translation, the result OC code cannot compile due to duplicated member variable: mBar;
Contributor guide
Assessment
This issue has not been assessed yet.