386854d73f
unusedButEntryPointMain for class was actually a wrong test: it didn't check anything, because objects are were not checked for unusedness before.
9 lines
89 B
Kotlin
9 lines
89 B
Kotlin
object A {
|
|
fun foo() {
|
|
A.bar()
|
|
}
|
|
|
|
fun bar() {
|
|
A.foo()
|
|
}
|
|
} |