[LL] Disable declaration modification service tests temporarily

- We cannot configure write access using the application environment
  creation because application environments are cached between test
  runs.

^KT-63560
This commit is contained in:
Marco Pennekamp
2023-11-17 16:25:44 +01:00
committed by Space Team
parent 23e0e40acc
commit 271f83d07d
7 changed files with 21 additions and 0 deletions
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
import kotlin.contracts.contract
import kotlin.contracts.InvocationKind
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
fun foo(string: String) {
<expr>println("Hello world, $string!")</expr>
}
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
fun foo(string: String) {
val a = 7
<expr>println("Hello world, $string!")</expr>
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
import kotlin.contracts.InvocationKind
inline fun foo(block: () -> Unit) {
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
fun foo(string: String) {
<expr>string.length</expr>
}
@@ -1,3 +1,6 @@
// IGNORE_FIR
// Reason: KT-63560
fun foo(string: String) {
println()
<expr>string.length</expr>
@@ -1 +1,4 @@
// IGNORE_FIR
// Reason: KT-63560
<expr>val property: Int = 5</expr>