78d80181e2
Fixes KT-50992 DeclarationDescriptor.isInlineClass misidentifies inline classes without constructors. This can happen for the ABI of inline classes with private constructors.
8 lines
84 B
Kotlin
Vendored
8 lines
84 B
Kotlin
Vendored
package app
|
|
|
|
import lib.*
|
|
|
|
fun runAppAndReturnOk(): String {
|
|
return A.a().b()
|
|
}
|