33e6a85a2d
We exclude testData pattern from copyright scope
24 lines
308 B
Kotlin
Vendored
24 lines
308 B
Kotlin
Vendored
// RESOLVE_SCRIPT
|
|
|
|
class UnusedClass {
|
|
var version: String = ""
|
|
|
|
fun execute() {
|
|
println(version)
|
|
}
|
|
}
|
|
|
|
fun unusedFunction() = 4
|
|
fun build(action: () -> Unit) {}
|
|
var unusedVariable = 4
|
|
var variable = "str"
|
|
|
|
build {
|
|
class A {
|
|
fun doo(i: Int) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
variable = "1" |