mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
To provide consistency between light classes and their delegates
IdeLightClass#testExtendingInterfaceWithDefaultImpls still failing since
we do not generate implementations delegating to DefaultImpls of superinterfaces
12 lines
383 B
Java
Vendored
12 lines
383 B
Java
Vendored
public interface B extends p.A {
|
|
@org.jetbrains.annotations.NotNull
|
|
java.lang.String b();
|
|
|
|
static final class DefaultImpls {
|
|
@org.jetbrains.annotations.NotNull
|
|
public static java.lang.String b(p.B $this) { /* compiled code */ }
|
|
|
|
@org.jetbrains.annotations.NotNull
|
|
public static java.lang.String a(p.B $this) { /* compiled code */ }
|
|
}
|
|
} |