[builtins-gen] Explicit visibility for companion objects and secondary constructors

This commit is contained in:
Ilya Gorbunov
2023-09-19 14:48:16 +02:00
committed by Space Team
parent ab7c2f2196
commit d8ee74222f
13 changed files with 27 additions and 37 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ package kotlin
/** Represents a value which is either `true` or `false`. */
public class Boolean private constructor() : Comparable<Boolean> {
@SinceKotlin("1.3")
companion object {}
public companion object {}
/** Returns the inverse of this boolean. */
@kotlin.internal.IntrinsicConstEvaluation