mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
12 lines
185 B
Kotlin
Vendored
12 lines
185 B
Kotlin
Vendored
// "Create parameter 'b'" "false"
|
|
// ERROR: Unresolved reference: b
|
|
// ACTION: Create property 'b'
|
|
// ACTION: Rename reference
|
|
|
|
open class A(val a: Int) {
|
|
|
|
}
|
|
|
|
object B: A(<caret>b) {
|
|
|
|
} |