mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
11 lines
238 B
Java
11 lines
238 B
Java
import java.util.*;
|
|
class Test {
|
|
{
|
|
String[] a = new String[] {
|
|
// workaround for QC CR #80581
|
|
"actioninvocationdata"
|
|
|
|
};
|
|
final List<String> foo = Arrays.asList(<caret>a);
|
|
}
|
|
} |