blob: 3ce6020699c8b69c9b0fdec32dc0754e265c6e30 [file] [log] [blame]
package cases.special
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
public class HiddenClass
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
public constructor() {
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
val hiddenVal = 1
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
var hiddenVar = 2
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
fun hiddenFun() {}
public var varWithHiddenAccessors: String = ""
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
get
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
set
}
@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
fun hiddenTopLevelFun() {}