9 lines
174 B
Text
9 lines
174 B
Text
|
// Access a field from an array (error, not a class type). Not even the length field exists
|
||
|
|
||
|
class Main {
|
||
|
void main() {
|
||
|
int[] c;
|
||
|
c = new int[10];
|
||
|
write(c.length);
|
||
|
}
|
||
|
}
|