8 lines
348 B
Kotlin
Vendored
8 lines
348 B
Kotlin
Vendored
// !LANGUAGE: +InlineClasses
|
|
|
|
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)
|