Migrate header to expect in libraries projects

This commit is contained in:
Stanislav Erokhin
2017-09-15 15:51:55 +03:00
parent 7cd5eeb24d
commit 481cbd0850
14 changed files with 110 additions and 110 deletions
@@ -1,6 +1,6 @@
package foo
header class PlatformClass {
expect class PlatformClass {
val value: String
}
@@ -1,6 +1,6 @@
package foo
header class PlatformTest {
expect class PlatformTest {
val value: PlatformClass
}
@@ -1,6 +1,6 @@
package org.jetbrains
header fun doMain()
expect fun doMain()
fun getGreeting() : String {
return "Hello, World!"