mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
10 lines
230 B
Java
10 lines
230 B
Java
import com.intellij.util.concurrency.ThreadingAssertions;
|
|
|
|
class AssertionInNestedBlock {
|
|
void testMethod() {
|
|
if (true) {
|
|
for (int i = 0; i < 10; i++) {
|
|
ThreadingAssertions.assertReadAccess();
|
|
}
|
|
}
|
|
} |