[Commonizer] Source-based tests on lifting up identical type aliases
^KMM-55
This commit is contained in:
native/commonizer/testData/callableMemberCommonization/returnTypes/commonized/common/package_root.kt
Vendored
+1
-1
@@ -9,7 +9,7 @@ expect val propertyWithInferredType3: String
|
||||
expect val propertyWithInferredType4: Nothing?
|
||||
expect val propertyWithInferredType5: Planet
|
||||
|
||||
expect class C
|
||||
typealias C = Planet
|
||||
|
||||
expect val property1: Int
|
||||
expect val property2: String
|
||||
|
||||
Vendored
-1
@@ -7,7 +7,6 @@ actual val propertyWithInferredType4 = null
|
||||
actual val propertyWithInferredType5 = Planet("Earth", 12742)
|
||||
|
||||
typealias A = Planet
|
||||
actual typealias C = Planet
|
||||
|
||||
actual val property1 = 1
|
||||
actual val property2 = "hello"
|
||||
|
||||
Vendored
-1
@@ -7,7 +7,6 @@ actual val propertyWithInferredType4 get() = null
|
||||
actual val propertyWithInferredType5 get() = Planet("Earth", 12742)
|
||||
|
||||
typealias B = Planet
|
||||
actual typealias C = Planet
|
||||
|
||||
actual val property1 = 1
|
||||
actual val property2 = "hello"
|
||||
|
||||
Reference in New Issue
Block a user