13 lines
429 B
Plaintext
Vendored
13 lines
429 B
Plaintext
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 @PropertyTypeMarker constructor(val subject: PropertyTypeMarked)
|