16 lines
No EOL
265 B
Text
16 lines
No EOL
265 B
Text
/* testing null references:
|
|
assigning null to an int or a boolean results in an error
|
|
write(null) results in a parser failure
|
|
*/
|
|
class Main {
|
|
void main() {
|
|
int a;
|
|
boolean b;
|
|
Object c;
|
|
|
|
c = null;
|
|
|
|
write(a);
|
|
writeln();
|
|
}
|
|
} |