Mapping of JavaDoc deprecated to Kotlin Deprecated + a pair of tests

This commit is contained in:
Mikhail Glukhikh
2015-08-04 14:39:53 +03:00
parent 7d02b45558
commit 45cc3c025f
17 changed files with 118 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
package test
kotlin.deprecated(value = "Deprecated in Java") public open class JavaDocDeprecated {
public constructor JavaDocDeprecated()
kotlin.deprecated(value = "Deprecated in Java") public open fun getFoo(/*0*/ p0: kotlin.String!): kotlin.String!
}