package test.pkg;

public class AppCompatTest extends IntermediateActivity {
    public void test() {
        getActionBar();                                     // ERROR
        getSupportActionBar();                              // OK

        startActionMode(null);                              // ERROR
        startSupportActionMode(null);                       // OK

        requestWindowFeature(0);                            // ERROR
        supportRequestWindowFeature(0);                     // OK

        setProgressBarVisibility(true);                     // ERROR
        setProgressBarIndeterminate(true);                  // ERROR
        setProgressBarIndeterminateVisibility(true);        // ERROR

        setSupportProgressBarVisibility(true);              // OK
        setSupportProgressBarIndeterminate(true);           // OK
        setSupportProgressBarIndeterminateVisibility(true); // OK
    }
}