• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 package cases.special
6 
7 @Deprecated("For binary compatibility", level = DeprecationLevel.HIDDEN)
8 public 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)
hiddenFunnull19     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)
hiddenTopLevelFunnull29 fun hiddenTopLevelFun() {}
30