510b9e6f2a
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.
35 lines
474 B
Kotlin
Vendored
35 lines
474 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// MODULE: lib
|
|
// FILE: test/Foo.java
|
|
|
|
package test;
|
|
|
|
public class Foo {
|
|
protected void foo(Runnable r) {
|
|
r.run();
|
|
}
|
|
}
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: test.kt
|
|
|
|
package other
|
|
|
|
import test.Foo
|
|
|
|
class Bar : Foo() {
|
|
fun bar() {
|
|
foo {}
|
|
foo(Runnable {})
|
|
// super.foo {}
|
|
super.foo(Runnable {})
|
|
this.foo {}
|
|
this.foo(Runnable {})
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
Bar().bar()
|
|
return "OK"
|
|
}
|