9 lines
389 B
Kotlin
Vendored
9 lines
389 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +InlineClasses, -JvmInlineValueClasses
|
|
|
|
inline class ConstructorWithDefaultVisibility(val x: Int)
|
|
inline class PublicConstructor public 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)
|