compiler-design-eth/javali_tests/HW3_nop90/MethodCallsErrors/MethodFromPrimitive.javali

8 lines
96 B
Text
Raw Permalink Normal View History

2020-01-15 22:32:25 +01:00
// A primitive variable doesn't have methods
class Main {
int a;
void main() {
a.go();
}
}