mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
EA-65910 - IOE: PsiJavaParserFacadeImpl.createTypeElementFromText
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user