94e5cafb61
There was a bug in the DFS. Whenever we encountered a "requires transitive X" directive in some module, we recursively invoked DFS not on X but on `dependencyName`, which is the target module that we're trying to find the path to. And that always failed, because no module requires itself. #KT-66275 Fixed
10 lines
144 B
Java
Vendored
10 lines
144 B
Java
Vendored
package d;
|
|
|
|
import b.B;
|
|
|
|
public class JavaMain {
|
|
public static void main(String[] args) {
|
|
System.out.println(new B().ok());
|
|
}
|
|
}
|