8 lines
No EOL
111 B
Text
8 lines
No EOL
111 B
Text
// Two fields in a class cannot share the same name
|
|
|
|
class Main {
|
|
void main() {}
|
|
int a;
|
|
Object b;
|
|
Main a;
|
|
} |