compiler-design-eth/javali_tests/HW3_nop90/FieldTests/ErrorFieldFromInt.javali

8 lines
126 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
// Error: access a field from a non-class type (primitive type int)
class Main {
void main() {
int a;
write(a.end);
}
}