// IGNORE_BACKEND_FIR: JVM_IR // IGNORE_BACKEND: JS_IR // KT-12630 KotlinReflectionInternalError on referencing some functions from stdlib // IGNORE_BACKEND: JS, NATIVE // WITH_REFLECT import kotlin.test.* fun box(): String { val asIterable = List::asIterable assertEquals("fun kotlin.collections.Iterable.asIterable(): kotlin.collections.Iterable", asIterable.toString()) val lazyOf: (String) -> Lazy = ::lazyOf assertEquals("fun lazyOf(T): kotlin.Lazy", lazyOf.toString()) return "OK" }