mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Fix annotations loading for inline class constructors
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// !LANGUAGE: +InlineClasses
|
||||
@file:Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
|
||||
package test
|
||||
|
||||
|
||||
inline class Z @PublishedApi internal constructor(val value: Int)
|
||||
@@ -0,0 +1,7 @@
|
||||
package test
|
||||
|
||||
public final inline class Z {
|
||||
/*primary*/ @kotlin.PublishedApi internal constructor Z(/*0*/ value: kotlin.Int)
|
||||
public final val value: kotlin.Int
|
||||
public final fun <get-value>(): kotlin.Int
|
||||
}
|
||||
Reference in New Issue
Block a user