interface Generic { SomeGeneric foo(); } class II implements Generic { public SomeGeneric foo() { return null; } } class SomeGeneric

{ }