1 /* Regression test for 1GL11J6: ITPJCORE:WIN2000 - search: missing field references (nested types) */
2 public class O {
3 	int y;
4 	class I {
y()5 		void y() {
6 			y = 0;
7 		}
8 	}
9 }