Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/genericClassMethod.kt
T
Valentin Kipyatkov e0e7044032 Synthetic properties: fixed completion and inspection for generic class
+ fixed KT-8539 No completion of generic extension function for <*> type arguments

 #KT-8539 Fixed
2015-07-21 08:32:50 +03:00

4 lines
81 B
Kotlin
Vendored

// WITH_RUNTIME
fun foo(klass: Class<*>) {
klass.getEnclosingClass()<caret>
}