Updated test data

This commit is contained in:
Michael Bogdanov
2016-02-03 10:29:43 +03:00
parent 6ae6f72156
commit 394221fefb
4 changed files with 5 additions and 4 deletions
@@ -1,4 +1,4 @@
// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -INVISIBLE_PRIVATE_CLASS_MEMBER_FROM_INLINE
// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE -PRIVATE_CLASS_MEMBER_FROM_INLINE
private class Z public constructor(){
public val publicProperty:Int = 12
public fun publicFun() {}
@@ -21,6 +21,6 @@ internal final class Z2 {
private final fun privateFun(): kotlin.Unit
public final fun publicFun(): kotlin.Unit
public final inline fun test(): kotlin.Unit
public final inline fun testInternal(): kotlin.Unit
internal final inline fun testInternal(): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
@@ -15,7 +15,7 @@ internal final class Z2 {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public final inline fun test(): kotlin.Unit
public final inline fun testInternal(): kotlin.Unit
internal final inline fun testInternal(): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}
@@ -1,7 +1,8 @@
package
private fun test(): S
private inline fun x(/*0*/ s: S, /*1*/ z: () -> kotlin.Unit): kotlin.Unit
internal inline fun x(/*0*/ s: S, /*1*/ z: () -> kotlin.Unit): kotlin.Unit
private inline fun x2(/*0*/ s: S, /*1*/ z: () -> kotlin.Unit): kotlin.Unit
private final class S {
public constructor S()