mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 22:20:24 +07:00
dd689d3a39
GitOrigin-RevId: 6b6405ee4491ad1d58947547c40df6fb2d291ab7
10 lines
236 B
Java
10 lines
236 B
Java
// "Extract side effects" "true-preview"
|
|
import java.util.concurrent.atomic.AtomicInteger;
|
|
|
|
public class Main {
|
|
public void test(AtomicInteger i) {
|
|
i.incrementAndGet();
|
|
i.incrementAndGet();
|
|
i.incrementAndGet();
|
|
}
|
|
} |