mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
8 lines
147 B
Kotlin
Vendored
8 lines
147 B
Kotlin
Vendored
// "Create property 'foo' as constructor parameter" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
fun test(): A<Int> {
|
|
return this.<caret>foo
|
|
}
|
|
}
|