ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
7 lines
144 B
Kotlin
Vendored
7 lines
144 B
Kotlin
Vendored
class FunctionsTest {
|
|
fun f() = String::length
|
|
fun f2() = fun (a: Int, b: Int) = a > b
|
|
fun f3() = run {}
|
|
fun f4() = run { 3 }
|
|
}
|