| // JAVAC_EXPECTED_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(); | |
| } |