mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 17:09:38 +07:00
GitOrigin-RevId: f613758953ebe445a3410946c6479c370ab0081d
11 lines
215 B
Java
11 lines
215 B
Java
package test;
|
|
import com.intellij.util.concurrency.annotations.RequiresReadLock;
|
|
|
|
public class Helper {
|
|
public Helper() {
|
|
RequiresReadLock;
|
|
}
|
|
}
|
|
public class C {
|
|
public void testMethod() { new Helper(); }
|
|
} |