mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
14 lines
199 B
Java
14 lines
199 B
Java
// "Suppress for method" "true"
|
|
|
|
class Main {
|
|
final OpenValueBased vb = new OpenValueBased(){};
|
|
|
|
void f(){
|
|
synchronized(<caret>vb){ }
|
|
}
|
|
}
|
|
|
|
@jdk.internal.ValueBased
|
|
class OpenValueBased {}
|
|
|