mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
14 lines
254 B
Java
14 lines
254 B
Java
// "Adapt using 'Collections.singletonList()'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
List<Throwable> test() {
|
|
try {
|
|
System.out.println();
|
|
}
|
|
catch (Exception | Error ex) {
|
|
return e<caret>x;
|
|
}
|
|
return null;
|
|
}
|
|
} |