jdk-24/test/langtools/tools/javac/mandatoryWarnings/deprecated/A.java
2017-09-12 19:03:39 +02:00

17 lines
145 B
Java

/*
* /nodynamiccopyright/
*
* Test code for Test.sh
*/
class A
{
void f() {
A1 a1 = new A1();
}
}
@Deprecated
class A1 {
}