blob: a027cbfc9603904ac95c17753c9d9876e3e94f6d [file] [log] [blame]
package p;
public class A {
/**
* This is the method foo.
* @deprecated Use {@link #foo()} instead
*
*/
void foo() {
foo();
}
/**
* This is the method foo.
*
*/
void foo() {
}
}