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