mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
GitOrigin-RevId: fb9b55071bcfbc19fea0f56c3ec15dda52fd48ee
9 lines
152 B
Java
9 lines
152 B
Java
// "Replace 'var' with explicit type" "true-preview"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
|
|
void x() {
|
|
ArrayList<String> x = new ArrayList<>();
|
|
}
|
|
} |