Sign in
dart
/
sdk.git
/
f36420a912bb76b61fc8b934286df44dd1aff09b
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
covariant_generic_parameter_in_interface_super.dart.textual_outline_modelled.expect
blob: da6ecc9263dac6e7802f701e8fa3b25dd6fdf015 [
file
] [
log
] [
blame
]
library test
;
abstract
class
I
<
T
>
{
void
f
(
T x
);
}
class
B
{
void
f
(
int
x
)
{}
}
class
C
extends
B
implements
I
<int>
{}
void
g1
(
C c
)
{}
void
g2
(
I
<num>
i
)
{}
void
main
()
{}
void
test
()
{}