929d06c86f
#KT-8426 Fixed
10 lines
198 B
Kotlin
Vendored
10 lines
198 B
Kotlin
Vendored
// "Create property 'foo' as constructor parameter" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
inner class B<U>(val m: U) {
|
|
fun test(): A<Int> {
|
|
return this.<caret>foo
|
|
}
|
|
}
|
|
}
|