[KLIB] Add klib layout tests

- currently only file paths are checked
This commit is contained in:
Roman Artemev
2021-12-08 15:56:07 +03:00
committed by teamcity
parent fb84287ae0
commit 1a64e2da91
2 changed files with 239 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// FILE: a.kt
fun foo() = 42
// FILE: b/c.kt
fun bar() = foo()
class C
// FILE: c/d/e.kt
fun qux(c: C) = c.toString()
fun baz() = qux(C()) + bar()