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