blob: 74107ea2d439beeed7372a4ee75b5fc5538ee0da [file] [log] [blame]
public class X {
void f(boolean isMale) {
String title = isMale <caret>? "Mr." : "Ms.";
System.out.println("title = " + title);
}
}