[KLIB][tests] Reorganize "klib dump-ir" tests

- Keep the test data under "native/native.tests/testData/klib/" dir
- Rename tests from "klib ir" to "klib dump-ir"
This commit is contained in:
Dmitriy Dolovov
2023-08-15 15:03:20 +02:00
committed by Space Team
parent a8034b6baa
commit ec9370c30b
24 changed files with 28 additions and 28 deletions
+7
View File
@@ -0,0 +1,7 @@
// FIR_IDENTICAL
package test
class A {
private fun foo() = 42
public fun bar(z: Int) = foo() + z
}