Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
inferred_initializing_formal_checks_default_value.dart.textual_outline.expect
blob: 4e7cbdcf6587a66b587cdd851b22a6d145ea7433 [
file
] [
log
] [
blame
]
library test
;
class
Foo
{
var
x
=
1
;
Foo
([
this
.
x
=
"1"
]);
}
main
()
{}