Sign in
dart
/
sdk.git
/
f860b70c98d03b454eb0ad2fba70e4e2c9641a6f
/
.
/
pkg
/
front_end
/
testcases
/
nonfunction_type_aliases
/
issue45658.dart.textual_outline.expect
blob: c536c5acd830b87b1d51fac93c747e086cf5a66d [
file
] [
log
] [
blame
]
class
C
<
X
>
{
C
();
factory C
.
foo
()
=>
new
C
();
}
typedef
A
<
X
extends
C
<
X
>>
=
C
<
X
>;
foo
()
{}
main
()
{}