"Find Usages": separate Kotlin and Java tests

This commit is contained in:
Alexey Sedunov
2013-10-28 20:59:50 +04:00
parent f1a7d707a0
commit f41cfa2b8b
160 changed files with 328 additions and 313 deletions
@@ -0,0 +1,11 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetNamedFunction
// OPTIONS: usages
package testing;
public open class Server() {
public open fun <caret>processRequest() = "foo"
}
public class ServerEx(): Server() {
public override fun processRequest() = "foofoo"
}