Sign in
dart
/
sdk
/
d90b10c1b167663b9b51adc274ea0fdb18ba5856
/
.
/
pkg
/
front_end
/
testcases
/
dot_shorthands
/
constructor.dart.textual_outline.expect
blob: fe680f9b33f64ec659922c74d6a428af318b90cf [
file
] [
log
] [
blame
]
class
Color
{
final
int
x
;
Color
.
red
()
:
x
=
1
;
Color
(
this
.
x
);
}
void
main
()
{}