IDEA-58858 Regression: Incorrect behavior on method name autocomplete if the next statement has a cast

This commit is contained in:
peter.gromov
2010-11-08 17:57:34 +03:00
parent f391453d32
commit 217ece149b
4 changed files with 20 additions and 0 deletions
@@ -0,0 +1,5 @@
public class Beda {
{
System.out.printl<caret> ((String)"a").subSequence();
}
}
@@ -0,0 +1,5 @@
public class Beda {
{
System.out.println (<caret>(String)"a").subSequence();
}
}