ebafdd3af0
Let's store them conveniently in one place!
22 lines
277 B
Kotlin
Vendored
22 lines
277 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
class A {
|
|
val a: Number
|
|
private field = 1
|
|
|
|
val b: Number
|
|
internal field = a + 2
|
|
|
|
val c = 1
|
|
val d = c + 2
|
|
|
|
fun rest() {
|
|
val aI = A().a + 10
|
|
val bI = A().b + 20
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val bA = A().b + 20
|
|
}
|