You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
scalac can parse Java sources to break cycles in mixed Scala/Java projects. However, the typer complains about correct (from the Java point of view) imports in Java sources:
packagep1;
public classEnclosingClass {
public classNestedClass {
}
}
importp1.EnclosingClass.NestedClass;
public classConsumingClass {
NestedClass nc;
}
This results in:
NestedClass is not a member of _root_.p1.EnclosingClass.
@dragos said:
It's similar, but I believe this is the more general description of the problem. I've seen that ticket, but didn't go past the title because the it was "Java class using Scala inner classes" (though it has more comments).
scalac can parse Java sources to break cycles in mixed Scala/Java projects. However, the typer complains about correct (from the Java point of view) imports in Java sources:
This results in:
See IDE #1000361
The text was updated successfully, but these errors were encountered: