mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
Do not try to load Java classes from incorrect packages
#KT-11474 Fixed
(cherry picked from commit bfb3b38ebc)
This commit is contained in:
9
compiler/testData/cli/jvm/javaSrcWrongPackage/A.java
vendored
Normal file
9
compiler/testData/cli/jvm/javaSrcWrongPackage/A.java
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
package foo;
|
||||
|
||||
public class A {
|
||||
public Nested nested() {
|
||||
return new Nested();
|
||||
}
|
||||
|
||||
public static class Nested {}
|
||||
}
|
||||
Reference in New Issue
Block a user