blob: b1ac463cdabf5579a1c69817265d0ec3c3f8f238 [file] [log] [blame]
class Bag {
Integer x;
Integer y;
}
class Foo {
public static void foo() {
Bag b = new Bag();
System.out.println(<selection>b</selection>.x);
System.out.println(b.x);
}
}