8 lines
95 B
Text
8 lines
95 B
Text
/* Test array size=0 */
|
|
|
|
class Main {
|
|
void main() {
|
|
int[] x;
|
|
x = new int[0];
|
|
}
|
|
}
|