08727bf0be
As the on-air analysis is obsolete, related tests are going to be deleted. Here we add cases not yet covered by 'ContextCollector' tests.
17 lines
254 B
Kotlin
Vendored
17 lines
254 B
Kotlin
Vendored
class ScriptClass {
|
|
val memberProperty = 4
|
|
}
|
|
|
|
fun scriptFunction() = 42
|
|
fun unusedScriptFunction(p: String) = 22
|
|
|
|
scriptFunction()
|
|
|
|
fun foo(i: Int, action: (Int) -> Unit) {
|
|
action(i)
|
|
}
|
|
|
|
foo(scriptFunction()) {
|
|
<expr>scriptFunction()</expr>
|
|
}
|