2007-12-01 00:00:00 +00:00
|
|
|
/*
|
|
|
|
* control test (2): verify that compiler handles at-deprecated correctly
|
2020-12-30 17:20:54 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @clean X DepX refX
|
2010-07-26 21:18:45 +00:00
|
|
|
* @compile/ref=DepX.out -XDrawDiagnostics DepX.java RefX.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
class DepX
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* X.
|
|
|
|
* @deprecated
|
|
|
|
*/
|
|
|
|
class X {
|
|
|
|
}
|