mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +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
9 lines
368 B
Java
Vendored
9 lines
368 B
Java
Vendored
public interface PrivateInTrait {
|
|
static final class DefaultImpls {
|
|
private static java.lang.String getNn(PrivateInTrait $this) { /* compiled code */ }
|
|
|
|
private static void setNn(PrivateInTrait $this, java.lang.String value) { /* compiled code */ }
|
|
|
|
private static java.lang.String getN(PrivateInTrait $this) { /* compiled code */ }
|
|
}
|
|
} |