Move around some codegen box tests

In tests merged from boxAgainstJava in 29b96aa1, some directories were
named slightly differently compared to box, e.g. "property" vs
"properties", "varargs" vs "vararg". This change renames these, moves
some of the tests to more fitting directories, and also renames
"visibility" to "javaVisibility" because it's about Java visibilities
specifically.
This commit is contained in:
Alexander Udalov
2021-02-10 21:17:09 +01:00
parent 2d60fa787d
commit 510b9e6f2a
46 changed files with 1197 additions and 1767 deletions
@@ -0,0 +1,20 @@
// TARGET_BACKEND: JVM
// MODULE: lib
// FILE: test/JavaClass.java
package test;
public class JavaClass {
public enum E { ENTRY }
public static String foo() { return "OK"; }
}
// MODULE: main(lib)
// FILE: 1.kt
package test
fun box(): String {
return JavaClass.foo()!!
}