Specify relevant declaration type in "create actual" fix #KT-20325 Fixed

This commit is contained in:
Mikhail Glukhikh
2017-10-03 12:06:59 +03:00
parent 93109c0d0e
commit d85c2dbe1f
10 changed files with 31 additions and 5 deletions
@@ -0,0 +1,3 @@
// "Create actual annotation class for platform JVM" "true"
expect annotation class <caret>Ann(val x: Int, val y: String)
@@ -0,0 +1,3 @@
// "Create actual annotation class for platform JVM" "true"
expect annotation class Ann(val x: Int, val y: String)
@@ -0,0 +1 @@
// Ann: to be implemented
@@ -0,0 +1,2 @@
// Ann: to be implemented
actual annotation class Ann(val x: Int, val y: String)