9 lines
113 B
Text
Executable file
9 lines
113 B
Text
Executable file
/* Test that variables are zero initialized */
|
|
|
|
class Main {
|
|
void main() {
|
|
int a;
|
|
write(a);
|
|
}
|
|
}
|
|
|