mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
The JVM backend does not generate parameterless default constructors for private constructors and constructors of local, inner, or inline classes.
14 lines
454 B
Kotlin
Vendored
14 lines
454 B
Kotlin
Vendored
inline class A(val x: Int = 0)
|
|
|
|
// 0 <init>\(\)V
|
|
// 1 private synthetic <init>\(I\)V
|
|
// 1 public final static synthetic box-impl\(I\)LA;
|
|
|
|
// JVM_TEMPLATES
|
|
// 1 public static constructor-impl\(I\)I
|
|
// 1 public static synthetic constructor-impl\$default\(IILkotlin/jvm/internal/DefaultConstructorMarker;\)I
|
|
|
|
// JVM_IR_TEMPLATES
|
|
// 1 public final static constructor-impl\(I\)I
|
|
// 1 public static synthetic constructor-impl\$default\(IILjava/lang/Object;\)I
|