CreateExpect: should prefer type aliases

#KT-32571 Fixed
This commit is contained in:
Dmitry Gridin
2019-08-22 17:48:19 +07:00
parent 5928a36fa2
commit 56a7445660
18 changed files with 35 additions and 14 deletions
@@ -1,3 +1,3 @@
expect class SomeString
// It would be great to have SomeString in foo() below, but it's problematic
expect fun foo(): String
expect fun foo(): SomeString
@@ -1 +0,0 @@
expect fun foo(): String
@@ -1,4 +1,5 @@
// "Create expected function in common module testModule_Common" "true"
// SHOULD_FAIL_WITH: You cannot create the expect declaration from:,fun foo() = ""
// DISABLE-ERRORS
typealias SomeString = String
@@ -1,6 +0,0 @@
// "Create expected function in common module testModule_Common" "true"
// DISABLE-ERRORS
typealias SomeString = String
actual fun foo(): SomeString = ""
@@ -1 +0,0 @@
expect fun <T> createList(): java.util.ArrayList<T>
@@ -0,0 +1 @@
expect val some: HashMap<Int, Int>
@@ -0,0 +1,4 @@
// "Create expected property in common module proj_Common" "true"
// DISABLE-ERRORS
actual val some<caret>: HashMap<Int, Int> = TODO()
@@ -0,0 +1,4 @@
// "Create expected property in common module proj_Common" "true"
// DISABLE-ERRORS
actual val some: HashMap<Int, Int> = TODO()
@@ -0,0 +1 @@
expect class <caret>A : HashMap<Int, Int>
@@ -0,0 +1,4 @@
// "Create expected class in common module proj_Common" "true"
// DISABLE-ERRORS
actual class <caret>A : HashMap<Int, Int>()
@@ -1,5 +1,4 @@
expect class My {
fun foo(): Int
val some: Double
}
@@ -6,7 +6,7 @@ import kotlin.Double as MyDouble
typealias MyInt = Int
actual class <caret>My {
actual fun foo(): MyInt = 42
fun foo(): MyInt = 42
actual val some: MyDouble = 4.0
}
@@ -0,0 +1,2 @@
These declarations cannot be transformed:
fun foo() = 42