mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
9 lines
174 B
Java
9 lines
174 B
Java
// "Split into declaration and assignment" "true-preview"
|
|
import java.util.*;
|
|
class Test {
|
|
{
|
|
List<String> l;
|
|
l = new ArrayList//end line comment
|
|
<>();
|
|
}
|
|
} |