// FIR_IDENTICAL // SKIP_TXT // ALLOW_KOTLIN_PACKAGE // FILE: f1.kt package kotlin class Unit // FILE: f2.kt class C: MutableIterator { override fun remove(): Unit { throw UnsupportedOperationException() } override fun next(): Int { throw UnsupportedOperationException() } override fun hasNext(): Boolean { throw UnsupportedOperationException() } }