Sign in
dart
/
sdk.git
/
f36420a912bb76b61fc8b934286df44dd1aff09b
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
forwarding_stub_with_non_covariant_param.dart.textual_outline_modelled.expect
blob: 345dc98b665531c4f8f5e37e3323da6e4314214f [
file
] [
log
] [
blame
]
library test
;
abstract
class
I
<
T
>
{
void
f
(
T x
,
int
y
);
}
class
B
{
void
f
(
int
x
,
int
y
)
{}
}
class
C
extends
B
implements
I
<int>
{}
void
main
()
{}