[Tests] Trim contents before checking for FIR_IDENTICAL

This commit is contained in:
Kirill Rakhman
2023-09-05 17:02:39 +02:00
committed by Space Team
parent 6b919e2593
commit 10e94f90ac
11 changed files with 7 additions and 91 deletions
@@ -1,17 +0,0 @@
fun foo(a: String, b: Int = 5): String {
return a + b
}
fun bar1(body: (String) -> String): String {
return body("something")
}
fun bar2(body: (String, Int) -> String): String {
return body("something", 0)
}
fun test() {
bar1(::foo)
bar2(::foo)
}
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
fun foo(a: String, b: Int = 5): String {
return a + b
}