aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs1810/493554/Cmd.kt
blob: a9a0238eb504ea5f8bd9a809ce5c88832c1b9246 (plain)
1
2
3
4
5
6
7
8
9
package example.kusedep;

import example.dep.Dep;

fun main(args: Array<String>) {
    val dep = Dep()
    println(dep)
    System.exit(0)
}