mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
We are going to deprecate `WITH_RUNTIME` directive in kotlin test infrastructure. The main reason behind this change is that `WITH_STDLIB` directive better describes its meaning, specifically it will add kotlin stdlib to test's classpath. GitOrigin-RevId: 73a702b404ed63e728ad85fa750d5d87ce5bc7f4
7 lines
127 B
Kotlin
7 lines
127 B
Kotlin
// WITH_STDLIB
|
|
|
|
val foo = "aaa"
|
|
val bar = "bbb"
|
|
fun bar2() = "will be ignored"
|
|
|
|
val test = "foo$foo$bar" + "${bar}${bar2()}bar" |