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
-1
@@ -2,7 +2,7 @@ package
|
||||
|
||||
package toplevelObjectDeclarations {
|
||||
public val x: kotlin.Int
|
||||
public val y: toplevelObjectDeclarations.y.<no name provided>
|
||||
public val y: toplevelObjectDeclarations.Foo
|
||||
public val z: kotlin.Int
|
||||
|
||||
public object A : toplevelObjectDeclarations.Foo {
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package
|
||||
|
||||
package a {
|
||||
public val o: a.o.<no name provided>
|
||||
public val o: kotlin.Any
|
||||
public fun </*0*/ T> a.A.foo(/*0*/ f: T): kotlin.Unit
|
||||
|
||||
public final class A {
|
||||
|
||||
Reference in New Issue
Block a user