Sign in
dart
/
sdk.git
/
75cf999566f9cf97ef471609a6b51fab6f998511
/
.
/
pkg
/
front_end
/
testcases
/
constructor_tearoffs
/
issue47154b.dart.textual_outline_modelled.expect
blob: 98d9e0b52cae91b933d0cf676eb234277a5a35a0 [
file
] [
log
] [
blame
]
X id
<
X
>(
X x
)
=>
x
;
X other
<
X
>(
X x
)
=>
throw
'$x'
;
class
A
{
const
A
(
bool
b
)
:
x
=
(
b
?
id
:
other
);
final
int
Function
(
int
)
x
;
}
void
main
()
{}