1 /*
2  * /nodynamiccopyright/
3  *
4  * Test code for Test.sh
5  */
6 
7 class A
8 {
f()9     void f() {
10         A1 a1 = new A1();
11     }
12 }
13 
14 @Deprecated
15 class A1 {
16 }
17