smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / SuggestInstanceofedValueInTernary-out.java
blob3865ec929612bde67637854316dc678c669448a3
1 public class TestCase extends Zzz {
2 public TestCase ttt(Zzz ooo) {
3 return ooo.g() instanceof TestCase ? (TestCase) ooo.g() : <caret>
7 class Zzz {
8 Object g();