Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
annotations
/
JavaDocDeprecated.java
blob: b7cd0889ef2a192b20336b6f2dcdb47a4724f52e [
file
] [
log
] [
blame
]
// SKIP_IN_RUNTIME_TEST
package
test
;
/**
* @deprecated
*/
public
class
JavaDocDeprecated
{
/**
* @deprecated
*/
public
String
getFoo
(
String
text
)
{
return
text
;
}
}