10 lines
130 B
Text
10 lines
130 B
Text
/* Test that variables are zero initialized */
|
|
|
|
class Main {
|
|
void main() {
|
|
boolean a;
|
|
if (!a){
|
|
write(5); }
|
|
}
|
|
}
|
|
|