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