blob: f2f9135cbea9f60482094674aaad0c0852390c92 [file] [log] [blame]
package receiver_in;
public class TestThisExpression {
void m(C c){
c.m(this);
class X {
void foo() {
foo();
}
}
}
}
class C {
void m(TestThisExpression t){
}
}
class Client{
void f(){
TestThisExpression t= null;
C c= null;
/*]*/t.m(c);/*[*/
}
}