blob: 4db5cdd67806b230b3fdd5e7f79237e5e88928ad [file] [log] [blame]
package c4;
/* Test case for bug 20693 Finding references to variables does not find all occurances */
public class X {
int x;
int foo() {
return (this.x);
}
}