Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
promote_bounds.dart.textual_outline_modelled.expect
blob: d5a710ca52766e7b529530cc80b1af6944108326 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
abstract
class
B
{
void
foo
();
}
abstract
class
C
extends
B
{
void
bar
();
}
main
()
{}
void
f
<
T
extends
B
>(
T a
)
{}