929d06c86f
#KT-8426 Fixed
10 lines
200 B
Kotlin
Vendored
10 lines
200 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@A.<caret>foo
|
|
}
|
|
}
|
|
}
|