1/*
2 * /nodynamiccopyright/
3 *
4 * Test code for Test.sh
5 */
6
7
8class B
9{
10    void f() {
11        B1 b1 = new B1();
12        B1 b1a = new B1();
13    }
14}
15
16
17@Deprecated
18class B1 {
19}
20