blob: 25d50182e86e9fbb88c39a5ddef641f7b85b9168 [file]
package test;
public class Test {
public interface Action {
String doSmth(String other);
}
void act(Action action) {
}
}