mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
In case of type constructors captured parameters from outer classes #KT-5510 Fixed #KT-3112 Fixed #KT-6325 Fixed #KT-408 Fixed #KT-6337 Fixed
6 lines
157 B
Java
Vendored
6 lines
157 B
Java
Vendored
public abstract class JavaClass {
|
|
public static String test() {
|
|
return Test.INSTANCE.foo(new Outer<String>("OK").new Inner<Integer>(1));
|
|
}
|
|
}
|