[AA] implement isExpect/isActual for callable symbols
^KT-54846 Fixed
This commit is contained in:
committed by
teamcity
parent
52a95cb75f
commit
fe4ca30c55
+26
-2
@@ -2,25 +2,49 @@
|
||||
|
||||
object A
|
||||
|
||||
class B
|
||||
class B(s: kotlin.String)
|
||||
|
||||
constructor(s: kotlin.String)
|
||||
|
||||
constructor(n: kotlin.Int)
|
||||
|
||||
class Nested
|
||||
|
||||
fun bar()
|
||||
|
||||
val n: kotlin.Int
|
||||
|
||||
class C
|
||||
|
||||
class Nested
|
||||
|
||||
fun baz()
|
||||
|
||||
var m: kotlin.Int
|
||||
|
||||
// FILE: JvmAndroid.kt
|
||||
|
||||
object A
|
||||
|
||||
class B
|
||||
class B(s: kotlin.String)
|
||||
|
||||
constructor(s: kotlin.String)
|
||||
|
||||
constructor(n: kotlin.Int)
|
||||
|
||||
class Nested
|
||||
|
||||
fun bar()
|
||||
|
||||
val n: kotlin.Int
|
||||
|
||||
typealias C = sample.D
|
||||
|
||||
class D
|
||||
|
||||
class Nested
|
||||
|
||||
fun baz()
|
||||
|
||||
var m: kotlin.Int
|
||||
|
||||
|
||||
Reference in New Issue
Block a user