aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/incremental-multi-chain/workload/src/main/kotlin/Main.kt
blob: cdf0560735fca008081f31f44b682506d0a73a28 (plain)
1
2
3
4
5
6
7
8
annotation class NeedsImpl
annotation class Impl

val x: AllImpls = AllImpls()

fun main() {
    println(x.toString())
}