Always use default 1.6 build target unless of 'jvm-target' option

This commit is contained in:
Mikhael Bogdanov
2016-12-12 10:33:33 +01:00
parent ef662a5679
commit dc5c3a478c
14 changed files with 27 additions and 106 deletions
+7
View File
@@ -0,0 +1,7 @@
interface A {
fun test() = "OK"
}
fun main(args: Array<String>) {
println(object : A {}.test())
}