564ea629d1
This fixes incorrect behaviour if primary constructor has no explicit 'constructor' keywork #KT-25548 Fixed
12 lines
436 B
Plaintext
Vendored
12 lines
436 B
Plaintext
Vendored
// "Add '@PropertyTypeMarker' annotation to 'PropertyTypeContainer'" "true"
|
|
// COMPILER_ARGUMENTS: -Xuse-experimental=kotlin.Experimental
|
|
// WITH_RUNTIME
|
|
// ACTION: Add '@PropertyTypeMarker' annotation to containing class 'PropertyTypeContainer'
|
|
|
|
@Experimental
|
|
annotation class PropertyTypeMarker
|
|
|
|
@PropertyTypeMarker
|
|
class PropertyTypeMarked
|
|
|
|
class PropertyTypeContainer @PropertyTypeMarker constructor(val subject: PropertyTypeMarked) |