b44dc55109
There was a refactoring of AbstractDiagnosticsTest in 9052ef06 which
contains bug that `setupEnvironment` for AbstractDiagnosticsTestUsingJavac
was not called, so for last year tests `UsingJavac` had no difference
with usual diagnostics tests which causes some contradictions in test data
20 lines
495 B
Kotlin
Vendored
20 lines
495 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !SKIP_JAVAC
|
|
// FIR_IDENTICAL
|
|
// !LANGUAGE: +InlineClasses
|
|
|
|
package kotlin.jvm
|
|
|
|
annotation class JvmInline
|
|
|
|
@JvmInline
|
|
value class ConstructorWithDefaultVisibility(val x: Int)
|
|
@JvmInline
|
|
value class PublicConstructor public constructor(val x: Int)
|
|
@JvmInline
|
|
value class InternalConstructor internal constructor(val x: Int)
|
|
@JvmInline
|
|
value class ProtectedConstructor protected constructor(val x: Int)
|
|
@JvmInline
|
|
value class PrivateConstructor private constructor(val x: Int)
|