[TD] Update testdata according to previous commit

This commit is contained in:
Dmitriy Novozhilov
2021-01-27 12:22:36 +03:00
parent 3a0eee64b8
commit 64a300bfcd
453 changed files with 736 additions and 777 deletions
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val value: String) {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
inline fun inlineFun(a: Int, lambda: (Int) -> Int = 1::plus): Int {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
inline fun inlineFun(a: Int, lambda: (Int) -> Int = 1::plus): Int {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val ok: String)
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
val Int.myInc
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
val Long.myInc
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val value: String) {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
open class Base
@@ -18,4 +18,4 @@ import test.*
fun box(): String {
return (inlineFun() as Child).value
}
}
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
fun foo(a: Number): String = "OK"
@@ -13,4 +13,4 @@ import test.*
fun box(): String {
return inlineFun()
}
}
@@ -1,3 +1,4 @@
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
@@ -11,7 +12,6 @@ inline fun stub() {}
// FILE: 2.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
import test.A.ok
inline fun inlineFun(lambda: () -> String = ::ok): String {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
fun ok() = "OK"
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val value: String) {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
fun ok() = "OK"
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val value: String) {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
private fun ok() = "OK"
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
private val ok = "OK"
@@ -1,3 +1,4 @@
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
@@ -8,7 +9,6 @@ inline fun stub() {}
// FILE: 2.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
import test.A.ok
inline fun inlineFun(lambda: () -> String = ::ok): String {
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
val ok = "OK"
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
class A(val ok: String)
@@ -1,5 +1,5 @@
// FILE: 1.kt
// SKIP_INLINE_CHECK_IN: inlineFun$default
// FILE: 1.kt
package test
object A {