New test for jvm8 nondefaults target

This commit is contained in:
Mikhael Bogdanov
2017-01-12 16:14:05 +01:00
parent d278a5c6d5
commit 09eeb414fe
12 changed files with 315 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// JVM_TARGET: 1.8
interface Z {
fun test(s: String = "OK"): String {
return s
}
}
class Test: Z
fun box(): String {
return Test().test()
}