[JS] add CLI test for KT-60531

This commit is contained in:
Anton Bannykh
2023-09-04 19:52:17 +02:00
committed by Space Team
parent 1e66f25546
commit 002cd011d4
4 changed files with 30 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
class Foo {
private companion object Test {
}
}
class Bar {
fun a() {
Foo.Test
}
}