blob: 56d0be10286188d69cad69f94eb9833f6160d442 [file] [log] [blame]
// "Replace 'switch' with 'if'" "true"
class Test {
void foo(float f) {
switch (f<caret>) {
case 0:
System.out.println(f);
}
}
}