[LL FIR] add tests on ClassIdCalculator

This commit is contained in:
Dmitrii Gridin
2023-06-17 13:33:59 +02:00
parent fc7712148e
commit 72c625906f
7 changed files with 157 additions and 0 deletions
@@ -0,0 +1,11 @@
package one
/* ClassId: one/Interface */interface Interface {
fun foo(param: String)
}
/* ClassId: one/ClassWithParameter */open class ClassWithParameter(i: Interface)
/* ClassId: one/TopLevelClass */class TopLevelClass : ClassWithParameter(/* ClassId: null */object : Interface {
/* ClassId: null */class NestedClassFromAnonymousObject
})