What is the Kotlin equivalent of Java's OuterClass.super.method()?
Example (in Java):
class Outer {
class Inner {
void someMethod() {
Outer.super.someOtherMethod();
}
}
@Override
public String someOtherMethod() {
// This is not called...
}
}