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