blob: 8f2456dafd80a650e139c1cea69b3a58efe21d59 [file] [log] [blame]
import androidx.annotation.DimenRes;
@SuppressWarnings("WeakerAccess")
public class A {
// Entrypoint: we should be able to deduce that id is @DrawableRes
public static void a(int id) {
B.b(id);
}
public static void fromA(int id) {
something(id);
}
private static void something(@DimenRes int id) {
}
}