deea0643ad
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
12 lines
142 B
Plaintext
Vendored
12 lines
142 B
Plaintext
Vendored
// "Create class 'Foo'" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
inner class Foo<U>(u: U) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fun test<U>(u: U) {
|
|
val a = A(u).Foo(u)
|
|
} |