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