3789983e89
Reviewed-by: darcy, ihse
20 lines
174 B
Java
20 lines
174 B
Java
/*
|
|
* /nodynamiccopyright/
|
|
*
|
|
* Test code for Test.sh
|
|
*/
|
|
|
|
|
|
class B
|
|
{
|
|
void f() {
|
|
B1 b1 = new B1();
|
|
B1 b1a = new B1();
|
|
}
|
|
}
|
|
|
|
|
|
@Deprecated
|
|
class B1 {
|
|
}
|