Use 'JVM_TARGET: 1.8' directive in codegen tests on 1.8 target

This commit is contained in:
Alexander Udalov
2016-06-15 17:23:38 +03:00
parent ac03d98cb2
commit b4f81d4bb5
18 changed files with 55 additions and 35 deletions
@@ -7,7 +7,7 @@ interface Test {
}
// FILE: 2.kt
// KOTLIN_CONFIGURATION_FLAGS: +JVM.JVM_8_TARGET
// JVM_TARGET: 1.8
interface Test2 : Test {
}
@@ -19,4 +19,4 @@ class TestClass : Test2 {
fun box(): String {
return TestClass().test()
}
}