blob: e51bc765e05dffb8860440b99fcc4dfeffc4ba43 [file] [log] [blame]
import 'dart:async';
class A {
f() async {
return await this.g();
}
g() async {
return this;
}
}
class B extends A {
h() async {
return await super.f();
}
}
main() async {
await new B().h();
}