Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_annotations.dart.textual_outline_modelled.expect
blob: 80453bef8d966500445aada970c91c626221ba68 [
file
] [
log
] [
blame
]
// @dart = 2.9
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
()
{}