find usages of Kotlin methods in Java code (KT-1819)

#KT-1819 fixed
This commit is contained in:
Dmitry Jemerov
2012-05-22 18:31:26 +02:00
parent 09cf7ac2aa
commit fa1ecfaa93
5 changed files with 87 additions and 2 deletions
@@ -0,0 +1,8 @@
import testing.*;
class Client {
public void foo() {
Server server = new Server();
server.processRequest();
}
}
@@ -0,0 +1,5 @@
package testing;
public class Server() {
public fun <caret>processRequest() = "foo"
}