blob: 36a03f5fab27add1c53907d8bad514b2a90400ac [file] [log] [blame]
// "Create Method 'foo'" "true"
class Test {
<R, D> R foo(T<R, D> t, D data) {
return t.foo(this, data);
}
}
class T<R, D> {
public R foo(Test test, D data) {
<selection>return null;</selection>
}
}