[AA] add more tests on companion members

This commit is contained in:
Dmitrii Gridin
2022-12-15 16:12:13 +01:00
committed by Space Team
parent 0f29edec15
commit 8bbe60e96c
11 changed files with 1461 additions and 0 deletions
@@ -0,0 +1,11 @@
// WITH_STDLIB
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE_K1
class MyClass {
companion object {
fun functionFromCompanion(i: Int) = Unit
@JvmStatic
fun staticFunctionFromCompanion() = 4
}
}