IDEA-172186 Autocomplete for interface method does not work if prefixed with 'default' keyword

This commit is contained in:
peter
2017-05-03 16:54:23 +02:00
parent 5a7559c85f
commit 24e81df27c
5 changed files with 70 additions and 25 deletions

View File

@@ -0,0 +1,3 @@
interface Foo extends Runnable {
default ru<caret>x
}

View File

@@ -0,0 +1,6 @@
interface Foo extends Runnable {
@Override
default void run() {
<caret>
}
}