Files
Alexandr Suhininandintellij-monorepo-bot c3afc8b902 [extract method] IDEA-278872: fix missed return variable
GitOrigin-RevId: 55ffed6010a531c34dfa18e22ad5b82ced9599ba
2021-10-14 09:49:26 +00:00

10 lines
215 B
Java

class Test {
void test() {
<selection>final String str = "atata";
do {
System.out.println();
} while (Math.random() > 0.5);</selection>
System.out.println(str);
}
}