Support non-public inline class constructors
#KT-28056 Fixed
This commit is contained in:
+3
-3
@@ -2,6 +2,6 @@
|
||||
|
||||
inline class ConstructorWithDefaultVisibility(val x: Int)
|
||||
inline class PublicConstructor public constructor(val x: Int)
|
||||
inline class InternalConstructor <!NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS!>internal<!> constructor(val x: Int)
|
||||
inline class ProtectedConstructor <!NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS!>protected<!> constructor(val x: Int)
|
||||
inline class PrivateConstructor <!NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS!>private<!> constructor(val x: Int)
|
||||
inline class InternalConstructor internal constructor(val x: Int)
|
||||
inline class ProtectedConstructor protected constructor(val x: Int)
|
||||
inline class PrivateConstructor private constructor(val x: Int)
|
||||
|
||||
Reference in New Issue
Block a user