mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-16 15:51:22 +00:00
17 lines
201 B
Java
Vendored
17 lines
201 B
Java
Vendored
// SKIP_IN_RUNTIME_TEST
|
|
|
|
package test;
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public class JavaDocDeprecated {
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public String getFoo(String text) {
|
|
return text;
|
|
}
|
|
}
|
|
|