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
@@ -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()