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