Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/annotations/classMembers/PublishedApiAnnotationOnInlineClassCosntructor.kt
T
Ilmir Usmanov ca3e7cf1a7 Value classes: Report lacking @JvmInline only on JVM backend
Report when @JvmInline is applied on non-value class.
2020-11-27 23:52:07 +01:00

7 lines
203 B
Kotlin
Vendored

// !LANGUAGE: +InlineClasses
// NO_CHECK_SOURCE_VS_BINARY
@file:Suppress("NON_PUBLIC_PRIMARY_CONSTRUCTOR_OF_INLINE_CLASS")
package test
inline class Z @PublishedApi internal constructor(val value: Int)