92f1681de0
Report error on value classes without @JvmInline annotation. Do not check for @JvmInline annotation in value classes since it breaks reflection.
9 lines
135 B
Kotlin
Vendored
9 lines
135 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +InlineClasses
|
|
|
|
package kotlin
|
|
|
|
annotation class JvmInline
|
|
|
|
@JvmInline
|
|
value class Test(val x: Int = 42) |