Files
kotlin-fork/idea/testData/resolve/referenceWithLib/overridingFunctionWithSamAdapterSrc/Test.java
T
Pavel V. Talanov bafe8e55ce Create SyntheticMemberDescriptor interface
Implement this interface by sam adapters/constructors and use it in navigation

 #KT-11708 Fixed
2016-06-20 20:15:34 +03:00

10 lines
146 B
Java
Vendored

package test;
public class Test {
public interface Action {
String doSmth(String other);
}
void act(Action action) {
}
}