Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_annotations.dart.textual_outline_modelled.expect
blob: af713075222d78ce756bb346c86c6b59038e7bee [
file
] [
log
] [
blame
]
library test
;
@Foo
(
const
[])
class
Bar
{}
@Foo
.
named
(
const
[])
class
Baz
{}
class
Foo
{
const
Foo
(
List
<
String
>
l
);
const
Foo
.
named
(
List
<
String
>
l
);
}
main
()
{}