Create actual: do not generate default parameter values

So #KT-23105 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-06-27 16:30:14 +03:00
parent b13e4535f5
commit 16c6d63b10
10 changed files with 54 additions and 0 deletions
@@ -0,0 +1,5 @@
// "Create actual interface for module testModule_JVM (JVM)" "true"
expect interface <caret>I {
fun f(p: Int = 1)
}
@@ -0,0 +1,5 @@
// "Create actual interface for module testModule_JVM (JVM)" "true"
expect interface I {
fun f(p: Int = 1)
}
@@ -0,0 +1 @@
// to be created
@@ -0,0 +1,4 @@
// to be created
actual interface I {
actual fun f(p: Int)
}