blob: b8ea4e7b371861fe0e082228f38d87c77633f558 [file] [log] [blame]
package p;
//private, final
class A {
private final class CallableImplementation implements Callable<String> {
@Override
public String call() throws Exception {
return "abc"; //$NON-NLS-1$
}
}
public interface Callable<T> {
T call() throws Exception;
}
Callable<String> c = new CallableImplementation();
}