Transform anonymous types even for public symbols
This became necessary when we removed the requirement to specify types for public members, because otherwise everything fails not being able to locate the anonymous class from another module #KT-9072 Fixed EA-72801
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
package
|
||||
|
||||
public fun main(/*0*/ args: kotlin.Array<kotlin.String>): kotlin.Unit
|
||||
public fun </*0*/ T : kotlin.Any> T?.iterator(): iterator.<no name provided>
|
||||
public fun </*0*/ T> java.util.Enumeration<T>.iterator(): iterator.<no name provided>
|
||||
public fun </*0*/ T : kotlin.Any> T?.iterator(): MyIterator<T>
|
||||
public fun </*0*/ T> java.util.Enumeration<T>.iterator(): kotlin.Iterator<T>
|
||||
|
||||
public interface MyIterator</*0*/ T> {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
|
||||
Reference in New Issue
Block a user