Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-140.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
covariant_generic_parameter_in_interface_mixin.dart.textual_outline_modelled.expect
blob: dab06f703475fce6b179c1784f2ac525756f1d6f [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
abstract
class
I
<
T
>
{
void
f
(
T x
);
}
class
B
{
void
f
(
int
x
)
{}
}
class
C
=
B
with
M
implements
I
<int>
;
class
M
{
void
f
(
int
x
)
{}
}
void
g1
(
C c
)
{}
void
g2
(
I
<num>
i
)
{}
void
main
()
{}
void
test
()
{}