mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +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
16 lines
313 B
Kotlin
Vendored
16 lines
313 B
Kotlin
Vendored
class Outer<E>(val x: E) {
|
|
inner class Inner<F>(val y: F) {
|
|
fun foo() = x.toString() + y.toString()
|
|
}
|
|
}
|
|
|
|
object Test {
|
|
fun foo(x: Outer<String>.Inner<Integer>) = x.foo()
|
|
}
|
|
|
|
fun box(): String {
|
|
val result = JavaClass.test()
|
|
if (result != "OK1") return "Fail: $result"
|
|
return "OK"
|
|
}
|