Files
kotlin-fork/idea/testData/quickfix/experimental/propertyInConstructor.kt
T

13 lines
404 B
Kotlin
Vendored

// "Add '@PropertyTypeMarker' annotation to 'PropertyTypeContainer'" "true"
// COMPILER_ARGUMENTS: -Xopt-in=kotlin.RequiresOptIn
// WITH_RUNTIME
// ACTION: Add '@PropertyTypeMarker' annotation to containing class 'PropertyTypeContainer'
@RequiresOptIn
annotation class PropertyTypeMarker
@PropertyTypeMarker
class PropertyTypeMarked
class PropertyTypeContainer(val subject: Property<caret>TypeMarked)