Files
kotlin-fork/compiler/testData/diagnostics/tests/imports/propertyClassFileDependencyRecursion.txt
T
2015-09-08 02:04:32 +03:00

17 lines
488 B
Plaintext
Vendored

package
package other {
public val prop: test.PropType? = null
}
package test {
public val checkTypeProp: test.PropType? = null
public final class PropType {
public constructor PropType()
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
}