8 lines
126 B
Text
8 lines
126 B
Text
|
// Error: access a field from a non-class type (primitive type int)
|
||
|
|
||
|
class Main {
|
||
|
void main() {
|
||
|
int a;
|
||
|
write(a.end);
|
||
|
}
|
||
|
}
|