IDEA-84100 Code completion does not work for Spring injected beans in debugger

This commit is contained in:
peter
2012-04-12 17:06:51 +02:00
parent a3954b3e60
commit c90b8ff3a5
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,10 @@
interface Foo { void foo(); }
interface Bar { void bar(); }
public class A {
void foo(Foo l) {
if (l instanceof Bar) {
l.<caret>
}
}
}