blob: 8604215b226efadd60594ddc2cb75ea8f9c4d80d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// version 20:
record Point(int x, int y) {
}
record Rectangle(Point upperLeft, Point lowerRight) {
}
public class RecordPattern20 {
void recordPattern(Object o) {
if (o instanceof Point(int x, int y)) {
}
if (o instanceof Rectangle(Point(var x1, var y1), Point(int x2, int y2))) {
}
}
void forEachSimple(Point[] pointArray) {
for (Point(var x, var y) : pointArray) {
}
}
void forEachNested(Rectangle[] rectangleArray) {
for (Rectangle(Point(var x1, var y1), Point p) : rectangleArray) {
}
}
}
|