class Outer {
class Inner {
static int i = 0;
}
}
The field i cannot be declared static; static fields can only be declared in static or top level types
class Inner {
static int i = 0;
}
}
The field i cannot be declared static; static fields can only be declared in static or top level types