Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
parser_testcases
/
error_recovery
/
issue_22314.dart
blob: 805e50e7ead2f56132d29ea8a4f2b31a7182bee8 [
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
>();
}