[Test] Use JDK 11 instead of JDK 9 in modern jdk tests
This commit is contained in:
committed by
teamcityserver
parent
fd537e7d5a
commit
5206b45ce3
@@ -0,0 +1,9 @@
|
||||
// STRING_CONCAT: indy-with-constants
|
||||
fun box(): String {
|
||||
val p = 3147483648u
|
||||
val a = "_"
|
||||
val b = "_"
|
||||
val s = a + "1" + "2" + 3 + 4L + b + 5.0 + 6F + '7' + true + false + 3147483647u + p
|
||||
|
||||
return if (s != "_1234_5.06.07truefalse31474836473147483648") "fail $s" else "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user