blob: cb389b8d0de5df9db526380d6c1a6848a68a837b [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov74bcc922018-05-03 20:07:54 +03005package cases.special
6
7@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
8public class HiddenClass
9 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
10 public constructor() {
11
12 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
13 val hiddenVal = 1
14
15 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
16 var hiddenVar = 2
17
18 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
19 fun hiddenFun() {}
20
21 public var varWithHiddenAccessors: String = ""
22 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
23 get
24 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
25 set
26}
27
28@Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
29fun hiddenTopLevelFun() {}