mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
14 lines
196 B
Java
14 lines
196 B
Java
// "Suppress for class" "true"
|
|
|
|
class Main {
|
|
final OpenValueBased vb = new OpenValueBased();
|
|
|
|
void f(){
|
|
synchronized(<caret>vb){ }
|
|
}
|
|
}
|
|
|
|
@jdk.internal.ValueBased
|
|
class OpenValueBased {}
|
|
|