Add 'DeprecationLevel' parameter to 'Deprecated'

This commit is contained in:
Yan Zhulanow
2015-10-05 18:04:38 +03:00
parent fd3c28c950
commit d90585624f
31 changed files with 165 additions and 128 deletions
@@ -2,5 +2,5 @@ package test
public open class AnnotatedMethod {
/*primary*/ public constructor AnnotatedMethod()
@kotlin.Deprecated(value = "Deprecated in Java") public open fun f(): kotlin.Unit
@kotlin.Deprecated(message = "Deprecated in Java") public open fun f(): kotlin.Unit
}