EA-65910 - IOE: PsiJavaParserFacadeImpl.createTypeElementFromText

This commit is contained in:
Anna Kozlova
2015-10-14 17:05:39 +02:00
parent c978fb9483
commit d3c9ae35eb
5 changed files with 44 additions and 20 deletions
@@ -0,0 +1,17 @@
import java.util.function.Function;
class B<T> {
void foo(B<? extends CharSequence> sequences){
sequences.bar(t -> t).ba<caret>z();
}
private void baz() {
T t = null;
}
<K> B<? super T> bar(Function<? super T, ? super T> f) {
return null;
}
}
@@ -0,0 +1,17 @@
import java.util.function.Function;
class B<T> {
void foo(B<? extends CharSequence> sequences){
Object t1 = null;
}
private void baz() {
T t = null;
}
<K> B<? super T> bar(Function<? super T, ? super T> f) {
return null;
}
}