// IGNORE_ANNOTATIONS inline class InlineIterable(private val it: Iterable) : Iterable { override fun iterator(): Iterator = it.iterator() }