Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/genericClassMethod.kt.after
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
76 B
Plaintext
Vendored

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