blob: 519a525a1275b9ddc3b12180d0456b54deb9008b [file] [log] [blame]
class GenericTest {
/**
@see com.intellij.openapi
*/
public void a( GenTest<?> obj ) {
}
public void b( AnotherGenTest<?> obj ) {
}
public void c( Predicate<?> obj ) {
}
public void d( AnotherPredicate<?> obj ) {
}
public class GenTest<T> {
}
public class AnotherGenTest<T> {
}
public interface Predicate<T> {
}
public interface AnotherPredicate<T> {
}
}