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