blob: 46ac02f20ee1328e70d8dbdc2fc2675a11e506b3 [file] [log] [blame]
// "Make 'A' extend 'B'" "true"
class B {}
class A extends B {
int foo(B b) {
B bz = this;
return 1;
}
}