KT-1151 Code completion for not imported extension functions - more tests for extension functions and properties
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package second
|
||||
|
||||
open class SomeOther() {}
|
||||
|
||||
class SomeTest<T> {
|
||||
fun testingMethod() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun <U : SomeOther> SomeTest<U>.testingUnexpectedFunction() {
|
||||
}
|
||||
|
||||
fun <W : Any> SomeTest<W>.testingExpectedFunction(i : Int) : String {
|
||||
return ""
|
||||
}
|
||||
Reference in New Issue
Block a user