blob: cfa4af04547878d1b0b3f9947d54e5ec72cd905b [file] [log] [blame]
public class SmartCompletionTest {
interface SmartCompletionType {}
private SmartCompletionType myNonStaticField;
private static void staticMethod(SmartCompletionType type) {}
private static class StaticInnerClass extends SmartCompletionTest {
private void method() {
staticMethod(myNon<caret>);
}
}
}