Sign in
dart
/
sdk.git
/
7a05e327a6a512266885df7f26fc83f3b14e3360
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks_new
/
stub_from_interface_covariantImpl_from_super.dart.textual_outline_modelled.expect
blob: 22c5f69de3c19c3efc6cebb6d48d304a6bd935af [
file
] [
log
] [
blame
]
library test
;
abstract
class
C
extends
B
<int>
implements
I
{}
abstract
class
I
{
void
f
(
int
x
,
Object
y
);
}
class
B
<
T
>
{
void
f
(
T x
,
int
y
)
{}
}
void
main
()
{}