mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
#IDEA-265154 fixed Merge-request: IJ-MR-158642 Merged-by: Bartek Pacia <bartek.pacia@jetbrains.com> GitOrigin-RevId: 7a04d4830e1f76ee3ad965390f28168834dca9e9
24 lines
442 B
Java
24 lines
442 B
Java
// "Convert to record class" "true-preview"
|
|
|
|
package org.qw;
|
|
|
|
import java.util.List;
|
|
import java.util.Set;
|
|
|
|
class ArrayList<T> {
|
|
|
|
}
|
|
|
|
// Test for IDEA-310010
|
|
public record RecordWithEnum(Mode mode, String name, Nested nested, List<Integer> integers, Set<String> strings,
|
|
java.util.ArrayList<Double> doubles) {
|
|
|
|
public enum Mode {
|
|
Add, Sub
|
|
}
|
|
|
|
public static class Nested {
|
|
int i;
|
|
}
|
|
}
|