mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
10 lines
257 B
Java
10 lines
257 B
Java
import org.jetbrains.annotations.Nls;
|
|
|
|
// "Annotate parameter 's' as '@Nls'" "true-preview"
|
|
class Foo {
|
|
String foo(@org.jetbrains.annotations.Nls String s) { return s;}
|
|
{
|
|
java.util.function.Function<String, String> f = (@Nls var s) -> foo(s);
|
|
}
|
|
}
|