blob: dc9418017ea63dde07e02d755f338c5e4505e96a [file] [log] [blame]
class Test<R> {
void foo(R r) {
if (r == null) {
}
}
void bar(R r){
foo(r);
}
}