completion: place functional expressions after variables of expected type (IDEA-174428, IDEA-178600)

This commit is contained in:
peter
2017-09-15 21:57:11 +02:00
parent 2f1cb559a3
commit dd920e884e
6 changed files with 54 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
interface I {
void foo(String out);
}
class Foo {
I output;
{
I r = out<caret>
}
}