blob: 89135cc9d1d2f3044bfa5e71c0a02854331f6bcc [file] [log] [blame]
public class R {
private static int ourInt;
public static int getOurInt() {
return ourInt;
}
public static void doSmth() {
System.out.println(<selection>ourInt</selection>);
}
}
class Usage {
void foo() {
R.doSmth();
}
}