Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks_new
/
stub_from_interface_covariant_from_interface.dart.textual_outline.expect
blob: 6905d9df3fd6e25ee1b46f17f2771e2dd70faac2 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
B
{
void
f
(
int
x
,
int
y
)
{}
}
abstract
class
I
{
void
f
(
covariant
int
x
,
Object
y
);
}
abstract
class
C
extends
B
implements
I
{}
void
main
()
{}