smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / NoInstanceofedValueInElseWithComplexIf.java
blob49a320ad1da0e3a117e223fd5e712fe5e6cebb91
1 public class TestCase extends Zzz {
2 boolean foo(String s) {
7 Object ooo;
8 if (ooo instanceof String && true) {
9 } else {
10 foo(o<caret>)