0d7c8635b3
- Detect usages of unitialized `this` as extension receiver argument - Make it work within object literal created before super call #KT-9120 Fixed #KT-8289 Fixed
16 lines
468 B
Kotlin
Vendored
16 lines
468 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun A.foobar() = 1
|
|
val A.prop: Int get() = 2
|
|
|
|
class A {
|
|
constructor(x: Int)
|
|
constructor() : this(
|
|
<!INSTANCE_ACCESS_BEFORE_SUPER_CALL!>foobar<!>() +
|
|
<!INSTANCE_ACCESS_BEFORE_SUPER_CALL!>this<!>.foobar() +
|
|
<!INSTANCE_ACCESS_BEFORE_SUPER_CALL!>prop<!> +
|
|
<!INSTANCE_ACCESS_BEFORE_SUPER_CALL!>this<!>.prop +
|
|
<!INSTANCE_ACCESS_BEFORE_SUPER_CALL!>this@A<!>.prop
|
|
)
|
|
}
|