|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
FULL PRODUCT VERSION :
javac -version
javac 1.6.0_06
A DESCRIPTION OF THE PROBLEM :
Compile the following code with javac -Xlint:deprecation src.java,
A warning will be given :
warning: [deprecation] test.b in test has been deprecated
b c = new b();
/**
* @deprecated
*/
package test;
class b{
}
public class Test{
public static void main(String[] args) {
b c = new b();
}
}
REPRODUCIBILITY :
This bug can be reproduced always.
|