Sign in
dart
/
sdk.git
/
7a05e327a6a512266885df7f26fc83f3b14e3360
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks
/
covariant_setter.dart.textual_outline_modelled.expect
blob: b7e0f4267897e7dad10d321160a19ba3ec6962c0 [
file
] [
log
] [
blame
]
library test
;
class
C
<
T
>
{
T x
;
void
f
(
T value
)
{}
void
set
y
(
T value
)
{}
}
typedef
void
F
<
T
>(
T x
);
void
g
(
C
<num>
c
)
{}
void
main
()
{}