Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/warningOnConstructorErrorOnClass.txt
T
2016-12-15 11:46:17 +03:00

12 lines
515 B
Plaintext
Vendored

package
public fun test1(): Foo
public fun test2(): Foo
@kotlin.Deprecated(level = DeprecationLevel.ERROR, message = "error") public final class Foo {
@kotlin.Deprecated(level = DeprecationLevel.WARNING, message = "warning") public constructor Foo()
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
}