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