Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
downwards_inference_annotations_type_variable.dart.textual_outline.expect
blob: fdc2d82c4464c9ed9f451cb8685c48a6824536a1 [
file
] [
log
] [
blame
]
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
()
{}