GH-787 - Allow references between sibling sub-modules.

Previously, we rejected references between sub-modules both contained in the same parent package.

Related ticket: GH-578.
This commit is contained in:
Oliver Drotbohm
2024-08-30 18:13:45 +02:00
parent 803c69835d
commit b370d5a3f2
3 changed files with 33 additions and 11 deletions

View File

@@ -16,10 +16,12 @@
package example.ni.nested.b.second;
import example.ni.nested.InNested;
import example.ni.nested.b.first.InNestedBFirst;
/**
* @author Oliver Drotbohm
*/
public class InNestedBSecond {
InNested inNested;
InNestedBFirst siblingReference;
}