expected type considered less important a sorting criterion than statistics and prefix (IDEA-94884, IDEA-93198)

This commit is contained in:
peter
2012-12-06 18:22:33 +01:00
parent 46ba8b689f
commit f238ac5882
6 changed files with 69 additions and 20 deletions
@@ -0,0 +1,22 @@
public class AnotherTestClass {
public static void main(String[] args) throws IOException {
test(getnu<caret>);
}
private static void test(int i, int j) {
}
public static NumberProvider getNumProvider() {
return new NumberProvider();
}
public static int getNumber() {
return 1;
}
private static class NumberProvider {
public int getNumber() {
return 1;
}
}
}