blob: 4df1c09c637b70704039a3a61d8e4aedcb9eaac8 [file] [log] [blame]
package test0190;
import java.util.*;
public class Test {
public static class Scanner {
public int x;
public int y;
}
public static class Selection {
public int start;
public int end;
}
public void foo(Selection selection) {
Scanner scanner= new Scanner();
if (/*]*/scanner.x < selection.start && selection.start < scanner.y/*[*/) {
g();
}
}
public void g() {
}
}