a19f8ffe6a
This reverts commit ce21a559
Because of the erroneous behavior in 'BuilderFactoryForDuplicateSignatureDiagnostics.groupMembersDescriptorsBySignature', two functions with arguments of different inline class types are considered to have the same JVM signature.
Before the error wasn't reported, as classes didn't have proper source elements.
This issue has to be fixed before enabling ranking tests.
21 lines
214 B
Kotlin
Vendored
21 lines
214 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
//FILE: a/a.kt
|
|
package foo
|
|
|
|
class A {
|
|
val a by lazy {
|
|
val a = 5
|
|
val b = 2
|
|
""
|
|
}
|
|
}
|
|
|
|
//FILE: b/a.kt
|
|
package bar
|
|
|
|
class B {
|
|
val a by lazy {
|
|
val b = 0
|
|
}
|
|
} |