mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
10 lines
230 B
Java
10 lines
230 B
Java
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
// "Replace 'var' with explicit type" "true-preview"
|
|
class Main {
|
|
{
|
|
List<Serializable> b = java.util.Arrays.asList("", 2);
|
|
final Object o = b.get(0);
|
|
}
|
|
} |