1 package duplicates_in;
2 
3 public class A_test992 {
a()4 	void a() {
5 		/*[*/int xxx= 0, yyy= 1;/*]*/
6 		System.out.println(xxx);
7 	}
8 
b()9 	void b() {
10 		int xxx= 0, yyy= 1;
11 		System.out.println(yyy);
12 	}
13 }