blob: f5a352bfc843a06c1dd15c1e0e6c57621b35b1f0 [file] [log] [blame]
// "Make 'A' extend 'B'" "true"
class B {}
class A {
int foo(B b) {
B bz = t<caret>his;
return 1;
}
}