Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_annotations_parameter.dart.textual_outline_modelled.expect
blob: a081060204f7742510efe3c421f8d53d43971c43 [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
C
{
void
m
(
@Foo
(
const
[])
x
)
{}
}
class
Foo
{
const
Foo
(
List
<
String
>
l
);
}
main
()
{}
void
f
(
@Foo
(
const
[])
x
)
{}