Sign in
dart
/
sdk.git
/
7a05e327a6a512266885df7f26fc83f3b14e3360
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks_new
/
call_through_this.dart.textual_outline.expect
blob: 6c7fe09f49505ad24c2eefa5dec6d63716ad829a [
file
] [
log
] [
blame
]
library test
;
typedef
F
<
T
>(
T x
);
class
C
<
T
>
{
void
f
(
T x
)
{}
void
g1
(
T x
)
{}
void
g2
(
T x
)
{}
void
g3
(
C
<
T
>
c
,
T x
)
{}
F
<
T
>
g4
()
=>
this
.
f
;
}
class
D
extends
C
<int>
{}
class
E
extends
C
<num>
{
void
f
(
covariant
int
x
)
{}
}
test
()
{}
main
()
{}