Files
kotlin-fork/idea/testData/completion/basic/multifile/DoNotCompleteWithConstraints.dependency.kt
T
2014-04-02 13:37:18 +04:00

16 lines
243 B
Kotlin

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 ""
}