10 lines
118 B
Text
10 lines
118 B
Text
|
// Test that you cannot invoke a method on an integer.
|
||
|
|
||
|
class Main {
|
||
|
void main() {
|
||
|
int x;
|
||
|
x = 1;
|
||
|
x.foo();
|
||
|
}
|
||
|
}
|