mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
completion: presume fresh variables have always low bounds during completion
IDEA-190041
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
interface Foo<T extends Foo<T>> {
|
||||
|
||||
static <F extends Foo<F>> void foo(F f) {
|
||||
bar(f);<caret>
|
||||
}
|
||||
|
||||
static <B extends Foo<B>> void bar(B b) { }
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
interface Foo<T extends Foo<T>> {
|
||||
|
||||
static <F extends Foo<F>> void foo(F f) {
|
||||
bar(<caret>);
|
||||
}
|
||||
|
||||
static <B extends Foo<B>> void bar(B b) { }
|
||||
}
|
||||
Reference in New Issue
Block a user