mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-22 08:31:31 +00:00
Mapping of JavaDoc deprecated to Kotlin Deprecated + a pair of tests
This commit is contained in:
16
compiler/testData/loadJava/compiledJava/annotations/JavaDocDeprecated.java
vendored
Normal file
16
compiler/testData/loadJava/compiledJava/annotations/JavaDocDeprecated.java
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// SKIP_IN_RUNTIME_TEST
|
||||
|
||||
package test;
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public class JavaDocDeprecated {
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
public String getFoo(String text) {
|
||||
return text;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user