blob: 003cb566f03c6a565ba66267d318930436aa4dc7 [file]
package test;
public interface WrongNumberOfGenericParameters {
interface Zero {}
interface One<T> {}
Zero<String> z();
One o0();
// Our Java resolve supposes that return type has exactly one argument
One<String, String> o2();
// This does not produce the expected result, because IDEA thinks Two<X> is a raw type
interface Two<P, Q> {}
Two<String> t1();
}