Fixed testdata to have the same package/file structure, otherwise it

will not work with Java 9.
This commit is contained in:
Alexander Podkhalyuzin
2018-10-23 13:48:53 +03:00
parent 35fc629305
commit 812d3d9ce6
7 changed files with 17 additions and 5 deletions
@@ -0,0 +1,6 @@
@file:JvmName("RenamedNew")
package facades
fun foo() {
}
@@ -0,0 +1,5 @@
@file:JvmName("MultiFileFacadeClass")
@file:JvmMultifileClass
package facades
public fun funInFacade(): String = "1"
@@ -0,0 +1,5 @@
@file:JvmName("MultiFileFacadeClass")
@file:JvmMultifileClass
package facades
public fun funInFacade2(): String = "2"