bafe8e55ce
Implement this interface by sam adapters/constructors and use it in navigation #KT-11708 Fixed
10 lines
146 B
Java
Vendored
10 lines
146 B
Java
Vendored
package test;
|
|
|
|
public class Test {
|
|
public interface Action {
|
|
String doSmth(String other);
|
|
}
|
|
|
|
void act(Action action) {
|
|
}
|
|
} |