Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_annotations_type_variable.dart.textual_outline.expect
blob: 0cfa516a1c917e8480f2fa625475728b75fb20bf [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
Foo
{
const
Foo
(
List
<
String
>
l
);
}
class
C
<
@Foo
(
const
[])
T
>
{}
typedef
void
F
<
@Foo
(
const
[])
T
>();
void
f
<
@Foo
(
const
[])
T
>()
{}
class
D
{
void
m
<
@Foo
(
const
[])
T
>()
{}
}
main
()
{}