Sign in
dart
/
sdk
/
b36df2bc3480c24f005c5edec5cbc3815c4726b0
/
.
/
pkg
/
front_end
/
testcases
/
general
/
error_recovery
/
annotations.dart.textual_outline.expect
blob: 4389ef900e9539af581fcacca19788f0d71e58fb [
file
] [
log
] [
blame
]
const
annotation
=
null
;
class
Annotation
{
final
String
message
;
const
Annotation
(
this
.
message
);
}
class
A
<
E
>
{}
class
C
{
m
()
=>
new
A
<
@annotation
@Annotation
(
"test"
)
C
>();
}
main
()
{}