mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
GitOrigin-RevId: 4d6a5487576dbbc4aca9c89b067eec8218aff686
14 lines
184 B
Java
14 lines
184 B
Java
// "Wrap using 'java.util.Optional'" "true-preview"
|
|
import java.util.Optional;
|
|
|
|
public class Test {
|
|
|
|
void m(String ss) {
|
|
f(s<caret>s);
|
|
}
|
|
|
|
|
|
void f(Optional<String> o) {
|
|
|
|
}
|
|
} |