bb808b5620
Moved tests for completion and their test data into module idea-completion
16 lines
243 B
Kotlin
Vendored
16 lines
243 B
Kotlin
Vendored
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 ""
|
|
} |