blob: 8fc864aa468c96a6802e7fc6edebd3c1c4eaec67 [file] [log] [blame]
package test.pkg;
import android.support.annotation.CheckResult;
public class CheckResultTest {
private void foo() {
checkSomething();
checkSomethingElse();
System.out.println(checkSomething());
System.out.println(checkSomethingElse());
String s1 = checkSomething();
String s2 = checkSomethingElse();
}
@CheckResult
private String checkSomething() {
return "";
}
private String checkSomethingElse() {
return "";
}
}