compiler-design-eth/javali_tests/HW3/ErrCallBase.javali

10 lines
118 B
Text
Raw Normal View History

2020-01-15 22:32:25 +01:00
// Test that you cannot invoke a method on an integer.
class Main {
void main() {
int x;
x = 1;
x.foo();
}
}