Minor, get rid of SAMs in some loadJava tests

This commit is contained in:
Alexander Udalov
2014-10-30 11:10:35 +03:00
parent 66d27fad13
commit ae3c17d399
15 changed files with 66 additions and 40 deletions
@@ -4,8 +4,6 @@ public open class PrivateMembers {
private constructor PrivateMembers()
private final var field: kotlin.Int
private open fun method(): kotlin.Unit
private final /*synthesized*/ fun samAdapter(/*0*/ p0: (() -> kotlin.Unit)!): kotlin.Unit
private open fun samAdapter(/*0*/ p0: test.PrivateMembers.SamInterface!): kotlin.Unit
private open inner class Inner {
private constructor Inner()
@@ -18,12 +16,7 @@ public open class PrivateMembers {
private open fun staticMethodInNested(): kotlin.Unit
}
private trait SamInterface {
public abstract fun foo(): kotlin.Unit
}
// Static members
private final var staticField: kotlin.Int
private final /*synthesized*/ fun SamInterface(/*0*/ function: () -> kotlin.Unit): test.PrivateMembers.SamInterface
private open fun staticMethod(): kotlin.Unit
}