mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
This was already happening for classes and packages, now will also for interface DefaultImpls and any other possible classes
11 lines
466 B
Java
Vendored
11 lines
466 B
Java
Vendored
public interface PrivateInTrait {
|
|
static final class DefaultImpls {
|
|
@org.jetbrains.annotations.NotNull
|
|
static java.lang.String getNn(PrivateInTrait $this) { /* compiled code */ }
|
|
|
|
static void setNn(@org.jetbrains.annotations.NotNull PrivateInTrait $this, java.lang.String value) { /* compiled code */ }
|
|
|
|
@org.jetbrains.annotations.Nullable
|
|
static java.lang.String getN(PrivateInTrait $this) { /* compiled code */ }
|
|
}
|
|
} |