Files
kotlin-fork/idea/testData/multiModuleQuickFix/createExpect/withAliases/jvm/My.kt.after
T
Dmitry Gridin 56a7445660 CreateExpect: should prefer type aliases
#KT-32571 Fixed
2019-08-27 17:26:10 +07:00

13 lines
235 B
Plaintext
Vendored

// "Create expected class in common module testModule_Common" "true"
// DISABLE-ERRORS
import kotlin.Double as MyDouble
typealias MyInt = Int
actual class <caret>My {
fun foo(): MyInt = 42
actual val some: MyDouble = 4.0
}