blob: 14558df59e545ee2636168de9b0a8063e6308944 [file] [log] [blame]
interface MyProcessor<T> {
void execute(T t);
}
class Proc1<T> implements MyProcessor<T> { public void execute(T t) {}}
class Foo {
MyProcessor<Foo> p = new <caret>
}