mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 23:53:48 +07:00
GitOrigin-RevId: 11fe3fdfa77f1d52c1e122dd790b3375488496f6
9 lines
228 B
Java
9 lines
228 B
Java
import org.jetbrains.annotations.NonNls;
|
|
|
|
// "Annotate parameter 'sb' as @NonNls" "true"
|
|
class Foo {
|
|
java.util.function.Consumer<StringBuilder> consumerTest() {
|
|
return (@NonNls StringBuilder sb) -> sb.append("foo");
|
|
}
|
|
}
|