Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
enhanced_enums
/
cyclic.dart.textual_outline_modelled.expect
blob: ad230c2f1a6759ce8eb7ead60b463e923626d3f7 [
file
] [
log
] [
blame
]
enum
CyclicReference
{
e1
(
e2
),
e2
(
e1
);
final
CyclicReference
other
;
const
CyclicReference
(
this
.
other
);
}