mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-21 22:11:40 +07:00
12 lines
302 B
Java
12 lines
302 B
Java
import testutils.ThreadingAssertions;
|
|
import testutils.ExpectedPath
|
|
|
|
@ExpectedPath("AnnotationInChain.testMethod -> @RequiresReadLock")
|
|
class AnnotationInChain {
|
|
void testMethod() {
|
|
if (true) {
|
|
for (int i = 0; i < 10; i++) {
|
|
ThreadingAssertions.assertReadAccess();
|
|
}
|
|
}
|
|
} |