MultipleJdksHighlightingTest: yet another test

This commit is contained in:
peter
2015-01-21 21:19:51 +01:00
parent 458b1b4b04
commit 730bbf7667
3 changed files with 23 additions and 0 deletions
@@ -0,0 +1,10 @@
package p;
import java.util.*;
import java.util.concurrent.*;
abstract class B extends A {
void foo() throws Exception {
call().<error descr="Cannot resolve method 'stream()'">stream</error>();
}
}