blob: 8e953e23e4b611c7250c65f6209de38382a4378d [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);
}
}