new inference: javac bug registration (JDK-8028503)

(cherry picked from commit 76727c790a9fcac64dce762d8d6fc674680d1905)
This commit is contained in:
anna
2013-11-18 14:18:00 +01:00
parent b34012621d
commit 73bf021d6c
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ class Test22 {
}
static void test() {
Iterable<Integer> map = <error>map(Test22 ::length)</error>;
Iterable<Integer> map = map(Test22 ::length);
}
public static <T> int length(String s) {

View File

@@ -58,7 +58,7 @@ public class NewMethodRefHighlightingTest extends LightDaemonAnalyzerTestCase {
doTest(false);
}
public void _testInexactMethodReferencePrimitiveBound() throws Exception {
public void testInexactMethodReferencePrimitiveBound() throws Exception {
doTest(false);
}