aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/incremental-removal/workload/src/main/kotlin/p1/Main.kt
blob: 24b10a608c90ea6b9172980ee6bf5da7097eeaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package p1

interface Bar {
    fun s(): String
}
val bar: Foo = Foo()

annotation class MyAnnotation

fun main() {
    println("result: ${bar.s()}")
}