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